smrtlink/src/Host.h
2016-02-25 19:46:35 +01:00

22 lines
280 B
C++

/*
* Host.h
*
* Created on: 11.09.2015
* Author: jdi
*/
#ifndef HOST_H_
#define HOST_H_
#include "Types.h"
class Host {
public:
Host() {
}
macAddr getMac();
ipAddr getIp();
std::string getIface();
};
#endif /* HOST_H_ */