summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/draft-0.0.0.1.diabin0 -> 3477 bytes
-rw-r--r--empty0
-rw-r--r--protocol/udm.proto3
-rw-r--r--server/include/protocol.h14
-rw-r--r--server/src/main.cpp6
-rw-r--r--server/src/protocol.cpp12
-rw-r--r--server/udm-server.cbp39
-rw-r--r--udm.workspace6
8 files changed, 80 insertions, 0 deletions
diff --git a/docs/draft-0.0.0.1.dia b/docs/draft-0.0.0.1.dia
new file mode 100644
index 0000000..c7bcbc7
--- /dev/null
+++ b/docs/draft-0.0.0.1.dia
Binary files differ
diff --git a/empty b/empty
deleted file mode 100644
index e69de29..0000000
--- a/empty
+++ /dev/null
diff --git a/protocol/udm.proto b/protocol/udm.proto
new file mode 100644
index 0000000..dd21b70
--- /dev/null
+++ b/protocol/udm.proto
@@ -0,0 +1,3 @@
+message placeholder_message {
+ required string placeholder_value = 1;
+} \ No newline at end of file
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>
diff --git a/udm.workspace b/udm.workspace
new file mode 100644
index 0000000..103e512
--- /dev/null
+++ b/udm.workspace
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
+<CodeBlocks_workspace_file>
+ <Workspace title="udm">
+ <Project filename="server/udm-server.cbp" />
+ </Workspace>
+</CodeBlocks_workspace_file>