This commit is contained in:
/jdi/ 2015-09-23 22:29:29 +02:00
commit 009294ba4d
13 changed files with 696 additions and 0 deletions

21
src/device/Host.h Normal file
View file

@ -0,0 +1,21 @@
/*
* Host.h
*
* Created on: 11.09.2015
* Author: jdi
*/
#ifndef HOST_H_
#define HOST_H_
#include "../Types.h"
class Host {
public:
Host();
virtual ~Host() {}
bytes getMac();
bytes getIp();
};
#endif /* HOST_H_ */