LRT14  1.0
 All Classes Namespaces Functions Variables Enumerations Enumerator
NetConnectionType.h
1 #ifndef RHESUS_NET_CONNECTION_TYPE_H_
2 #define RHESUS_NET_CONNECTION_TYPE_H_
3 
4 namespace Rhesus
5 {
6 namespace Messenger
7 {
8  namespace NetConnectionType
9  {
10  enum Enum
11  {
12  CLIENT = 0,
13  SERVER = 1
14 
15  };
16  }
17 }
18 }
19 
20 #endif