smrtlink/src/Host.h
2015-09-27 12:23:12 +02:00

21 lines
229 B
C++

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