This commit is contained in:
/jdi/ 2015-09-27 12:23:12 +02:00
parent 364bb25ab7
commit b76fb38bc2
16 changed files with 363 additions and 196 deletions

21
src/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_ */