diff options
author | Aaron Seigo <aseigo@kde.org> | 2014-11-21 17:55:53 +0100 |
---|---|---|
committer | Aaron Seigo <aseigo@kde.org> | 2014-11-21 17:55:53 +0100 |
commit | d77a7ebbdeab5079fea31a5308fd9e1474e6336b (patch) | |
tree | 0c2501ecdcbfc9f789804b2c0eb0eb7943b1b1ca | |
parent | 85860fbe47ca5ec24c70966f42a53162d761b91f (diff) | |
download | sink-d77a7ebbdeab5079fea31a5308fd9e1474e6336b.tar.gz sink-d77a7ebbdeab5079fea31a5308fd9e1474e6336b.zip |
namespace for command ids
-rw-r--r-- | common/commands.h | 12 |
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 | |||
3 | namespace Commands | ||
4 | { | ||
5 | |||
6 | enum CommandIds { | ||
7 | UnknownCommand = 0, | ||
8 | HandshakeCommand, | ||
9 | CustomCommand = 0xffff | ||
10 | }; | ||
11 | |||
12 | } \ No newline at end of file | ||