diff options
Diffstat (limited to 'src/Common')
-rw-r--r-- | src/Common/HostInfo.h | 56 | ||||
-rw-r--r-- | src/Common/Makefile.am | 2 | ||||
-rw-r--r-- | src/Common/Makefile.in | 2 |
3 files changed, 58 insertions, 2 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_ */ diff --git a/src/Common/Makefile.am b/src/Common/Makefile.am index 88126c4..d232f0b 100644 --- a/src/Common/Makefile.am +++ b/src/Common/Makefile.am @@ -4,4 +4,4 @@ noinst_LTLIBRARIES = libcommon.la libcommon_la_SOURCES = ConfigManager.cpp Exception.cpp Logger.cpp RequestManager.cpp SystemBackend.cpp Util.cpp libcommon_la_LIBADD = Backends/libbackends.la Requests/librequests.la RequestHandlers/librequesthandlers.la -noinst_HEADERS = ConfigManager.h Exception.h Logger.h Request.h RequestBase.h RequestHandler.h RequestManager.h SystemBackend.h Util.h +noinst_HEADERS = ConfigManager.h Exception.h HostInfo.h Logger.h Request.h RequestBase.h RequestHandler.h RequestManager.h SystemBackend.h Util.h diff --git a/src/Common/Makefile.in b/src/Common/Makefile.in index 9f655ee..06e237f 100644 --- a/src/Common/Makefile.in +++ b/src/Common/Makefile.in @@ -201,7 +201,7 @@ SUBDIRS = Backends Requests RequestHandlers noinst_LTLIBRARIES = libcommon.la libcommon_la_SOURCES = ConfigManager.cpp Exception.cpp Logger.cpp RequestManager.cpp SystemBackend.cpp Util.cpp libcommon_la_LIBADD = Backends/libbackends.la Requests/librequests.la RequestHandlers/librequesthandlers.la -noinst_HEADERS = ConfigManager.h Exception.h Logger.h Request.h RequestBase.h RequestHandler.h RequestManager.h SystemBackend.h Util.h +noinst_HEADERS = ConfigManager.h Exception.h HostInfo.h Logger.h Request.h RequestBase.h RequestHandler.h RequestManager.h SystemBackend.h Util.h all: all-recursive .SUFFIXES: |