LRT13  1.0
 All Classes Namespaces Functions Variables Enumerations Enumerator
LibraryMessageType.h
1 #ifndef LIBRARY_MESSAGETYPE_H_
2 #define LIBRARY_MESSAGETYPE_H_
3 //sdfjkl
4 namespace Network
5 {
6  // minor hack because pre-C++11 compilers move the enum values into the parent namespace.
11  namespace LibraryMessageType
12  {
13  enum Enum
14  {
15  MESSAGE_ACK = 0x00,
16  CONNECTION_REQUEST = 0x10,
17  CONNECTION_CONFIRM = 0x11,
18  };
19  };
20 };
21 
22 #endif