]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/ctables.h
More docs. Tons more docs. I need coffee and we're out of coffee :<
[user/henk/code/inspircd.git] / include / ctables.h
index 7fca885bcb90cd5897bf917865e828f939e09b9f..c997cf68a7eca883bcb2e1e2ed6f3c2b90cfc226 100644 (file)
 #ifndef __CTABLES_H__
 #define __CTABLES_H__
 
-#include "inspircd_config.h"
-
-#ifdef GCC3
-#include <ext/hash_map>
-#else
-#include <hash_map>
-#endif
 
-#ifdef GCC3
-#define nspace __gnu_cxx
-#else
-#define nspace std
-#endif
+#include "inspircd_config.h"
+#include "hash_map.h"
+#include "base.h"
 
 class userrec;
+class InspIRCd;
 
 /*typedef void (handlerfunc) (char**, int, userrec*);*/
 
 /** A structure that defines a command
  */
-class command_t
+class command_t : public Extensible
 {
+ protected:
+       InspIRCd* ServerInstance;
  public:
        /** Command name
        */
@@ -58,14 +52,32 @@ class command_t
        /** used for resource tracking between modules
         */
        std::string source;
+       /** True if the command is disabled to non-opers
+        */
+       bool disabled;
+       /** Syntax string for the command, displayed if non-empty string.
+        * This takes place of the text in the 'not enough parameters' numeric.
+        */
+       std::string syntax;
 
-       command_t(std::string cmd, char flags, int minpara) : command(cmd), flags_needed(flags), min_params(minpara)
+       command_t(InspIRCd* Instance, const std::string &cmd, char flags, int minpara) : ServerInstance(Instance), command(cmd), flags_needed(flags), min_params(minpara), disabled(false)
        {
                use_count = total_bytes = 0;
                source = "<core>";
+               syntax = "";
        }
 
-       virtual void Handle(char** parameters, int pcnt, userrec* user) = 0;
+       virtual void Handle(const char** parameters, int pcnt, userrec* user) = 0;
+
+       void Disable(bool setting)
+       {
+               disabled = setting;
+       }
+
+       bool IsDisabled()
+       {
+               return disabled;
+       }
 
        virtual ~command_t() {}
 };
@@ -73,4 +85,3 @@ class command_t
 typedef nspace::hash_map<std::string,command_t*> command_table;
 
 #endif
-