summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Seigo <aseigo@kde.org>2014-11-21 17:55:53 +0100
committerAaron Seigo <aseigo@kde.org>2014-11-21 17:55:53 +0100
commitd77a7ebbdeab5079fea31a5308fd9e1474e6336b (patch)
tree0c2501ecdcbfc9f789804b2c0eb0eb7943b1b1ca
parent85860fbe47ca5ec24c70966f42a53162d761b91f (diff)
downloadsink-d77a7ebbdeab5079fea31a5308fd9e1474e6336b.tar.gz
sink-d77a7ebbdeab5079fea31a5308fd9e1474e6336b.zip
namespace for command ids
-rw-r--r--common/commands.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/common/commands.h b/common/commands.h
new file mode 100644
index 0000000..74174ee
--- /dev/null
+++ b/common/commands.h
@@ -0,0 +1,12 @@
1#pragma once
2
3namespace Commands
4{
5
6enum CommandIds {
7 UnknownCommand = 0,
8 HandshakeCommand,
9 CustomCommand = 0xffff
10};
11
12} \ No newline at end of file