22 lines
280 B
C++
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_ */
|