summaryrefslogtreecommitdiffstats
path: root/src/Common/HostInfo.h
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2008-09-18 14:51:48 +0200
committerMatthias Schiffer <matthias@gamezock.de>2008-09-18 14:51:48 +0200
commitb503a70fca019368399038cde649b3ef8df85bb9 (patch)
tree60fa313583dcf0482e7bab70dfa2fa8e34fd62cd /src/Common/HostInfo.h
parentd84a3b91346038bf55d7111462dab42a0a26445d (diff)
downloadmad-b503a70fca019368399038cde649b3ef8df85bb9.tar
mad-b503a70fca019368399038cde649b3ef8df85bb9.zip
Flexiblere ?bertragung von Host-Listen
Diffstat (limited to 'src/Common/HostInfo.h')
-rw-r--r--src/Common/HostInfo.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/src/Common/HostInfo.h b/src/Common/HostInfo.h
new file mode 100644
index 0000000..db7f5d1
--- /dev/null
+++ b/src/Common/HostInfo.h
@@ -0,0 +1,56 @@
+/*
+ * HostInfo.h
+ *
+ * Copyright (C) 2008 Matthias Schiffer <matthias@gamezock.de>
+ *
+ * This program is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef MAD_COMMON_HOSTINFO_H_
+#define MAD_COMMON_HOSTINFO_H_
+
+#include <string>
+
+namespace Mad {
+namespace Common {
+
+class HostInfo {
+ public:
+ enum Status {
+ INACTIVE, RUNNING
+ };
+
+ private:
+ std::string name;
+ std::string ip;
+
+ Status status;
+
+ public:
+ HostInfo(const std::string& name0 = std::string()) : name(name0), status(INACTIVE) {}
+
+ void setName(const std::string &newName) {name = newName;}
+ const std::string& getName() const {return name;}
+
+ void setIP(const std::string& newIp) {ip = newIp;}
+ const std::string& getIP() const {return ip;}
+
+ void setStatus(Status newStatus) {status = newStatus;}
+ Status getStatus() const {return status;}
+};
+
+}
+}
+
+#endif /* MAD_COMMON_HOSTINFO_H_ */