]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/ctables.h
Fixed recursive 'splat' in the actors table
[user/henk/code/inspircd.git] / include / ctables.h
index cd3dc83a76aed39db8834e3851f39420e0347bbb..5926f3a2a2f76c2926555503f205a564b690d817 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  Inspire is copyright (C) 2002-2003 ChatSpike-Dev.
+ *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
  *                       E-mail:
  *                <brain@chatspike.net>
  *               <Craig@chatspike.net>
  *
  * ---------------------------------------------------
  */
+#ifndef __CTABLES_H__
+#define __CTABLES_H__
+
 #include "inspircd_config.h"
 #include "inspircd.h"
 #include "base.h"
 
-#ifndef __CTABLES_H__
-#define __CTABLES_H__
-
 /** A structure that defines a command
  */
-class command_t : public classbase
+class command_t : public Extensible
 {
  public:
        /** Command name
@@ -43,6 +44,9 @@ class command_t : public classbase
        /** used by /stats m
         */
        long total_bytes;
+       /** used for resource tracking between modules
+        */
+       char source[MAXBUF];
 };
 
 #endif