diff options
Diffstat (limited to 'server')
-rw-r--r-- | server/include/protocol.h | 14 | ||||
-rw-r--r-- | server/src/main.cpp | 6 | ||||
-rw-r--r-- | server/src/protocol.cpp | 12 | ||||
-rw-r--r-- | server/udm-server.cbp | 39 |
4 files changed, 71 insertions, 0 deletions
diff --git a/server/include/protocol.h b/server/include/protocol.h new file mode 100644 index 0000000..16a7643 --- /dev/null +++ b/server/include/protocol.h @@ -0,0 +1,14 @@ +#ifndef PROTOCOL_H +#define PROTOCOL_H + + +class protocol +{ + public: + protocol(); + virtual ~protocol(); + protected: + private: +}; + +#endif // PROTOCOL_H diff --git a/server/src/main.cpp b/server/src/main.cpp new file mode 100644 index 0000000..4faba80 --- /dev/null +++ b/server/src/main.cpp @@ -0,0 +1,6 @@ + + +int main(int argc, char *argv[]) +{ + return 0; +} diff --git a/server/src/protocol.cpp b/server/src/protocol.cpp new file mode 100644 index 0000000..f70f471 --- /dev/null +++ b/server/src/protocol.cpp @@ -0,0 +1,12 @@ +#include "protocol.h" +#include "../../protocol/udm.pb.h" + +protocol::protocol() +{ + //ctor +} + +protocol::~protocol() +{ + //dtor +} diff --git a/server/udm-server.cbp b/server/udm-server.cbp new file mode 100644 index 0000000..6c2a233 --- /dev/null +++ b/server/udm-server.cbp @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<CodeBlocks_project_file> + <FileVersion major="1" minor="6" /> + <Project> + <Option title="udm-server" /> + <Option pch_mode="2" /> + <Option compiler="gcc" /> + <Build> + <Target title="Debug"> + <Option output="bin/Debug/udm-server" prefix_auto="1" extension_auto="1" /> + <Option object_output="obj/Debug/" /> + <Option type="1" /> + <Option compiler="gcc" /> + <Compiler> + <Add option="-g" /> + </Compiler> + </Target> + <Target title="Release"> + <Option output="bin/Release/udm-server" prefix_auto="1" extension_auto="1" /> + <Option object_output="obj/Release/" /> + <Option type="1" /> + <Option compiler="gcc" /> + <Compiler> + <Add option="-O2" /> + </Compiler> + <Linker> + <Add option="-s" /> + </Linker> + </Target> + </Build> + <Compiler> + <Add option="-Wall" /> + </Compiler> + <Extensions> + <code_completion /> + <debugger /> + </Extensions> + </Project> +</CodeBlocks_project_file> |