]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/users.h
added added "./configure -svnupdate rebuild"
[user/henk/code/inspircd.git] / include / users.h
index b6ad57c64a52423b589a8eaeb356fc02a330d5ed..dfd5c5e89e6d1dc4cc3943400fef5cbfbb7c6efc 100644 (file)
 
 #include "hashcomp.h"
 #include "cull_list.h"
-#define STATUS_OP      4
-#define STATUS_HOP     2
-#define STATUS_VOICE   1
-#define STATUS_NORMAL  0
 
-#define CC_ALLOW       0
-#define CC_DENY                1
+enum ChanStatus {
+       STATUS_OP     = 4,
+       STATUS_HOP    = 2,
+       STATUS_VOICE  = 1,
+       STATUS_NORMAL = 0
+};
 
-template<typename T> string ConvToStr(const T &in);
+enum ClassTypes {
+       CC_ALLOW = 0,
+       CC_DENY  = 1
+};
 
 /** Holds a channel name to which a user has been invited.
  */