summaryrefslogtreecommitdiffstats
path: root/src/Common/HostInfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Common/HostInfo.h')
-rw-r--r--src/Common/HostInfo.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Common/HostInfo.h b/src/Common/HostInfo.h
index bd4afba..f70322c 100644
--- a/src/Common/HostInfo.h
+++ b/src/Common/HostInfo.h
@@ -35,7 +35,7 @@ class HostInfo {
private:
Core::String name;
- std::string ip;
+ Core::String ip;
State state;
@@ -45,8 +45,8 @@ class HostInfo {
void setName(const Core::String &newName) {name = newName;}
const Core::String& getName() const {return name;}
- void setIP(const std::string& newIp) {ip = newIp;}
- const std::string& getIP() const {return ip;}
+ void setIP(const Core::String& newIp) {ip = newIp;}
+ const Core::String& getIP() const {return ip;}
void setState(State newState) {state = newState;}
State getState() const {return state;}