21 lines
280 B
C++
21 lines
280 B
C++
#ifndef INFO_OVER_ME_H
|
|
#define INFO_OVER_ME_H
|
|
|
|
#include <string>
|
|
|
|
class InfoOverMe
|
|
{
|
|
public:
|
|
std::string containingFolder();
|
|
|
|
public:
|
|
std::string myHostname();
|
|
std::string myOsHostname();
|
|
std::string myId();
|
|
|
|
public:
|
|
InfoOverMe();
|
|
};
|
|
|
|
#endif // INFO_OVER_ME_H
|