00001 /* +------------------------------------+ 00002 * | Inspire Internet Relay Chat Daemon | 00003 * +------------------------------------+ 00004 * 00005 * Inspire is copyright (C) 2002-2003 ChatSpike-Dev. 00006 * E-mail: 00007 * <brain@chatspike.net> 00008 * <Craig@chatspike.net> 00009 * 00010 * Written by Craig Edwards, Craig McLure, and others. 00011 * This program is free but copyrighted software; see 00012 * the file COPYING for details. 00013 * 00014 * --------------------------------------------------- 00015 */ 00016 #include "inspircd_config.h" 00017 #include "inspircd.h" 00018 #include "base.h" 00019 00020 #ifndef __CTABLES_H__ 00021 #define __CTABLES_H__ 00022 00025 class command_t : public classbase 00026 { 00027 public: 00030 char command[MAXBUF]; 00033 handlerfunc *handler_function; 00036 char flags_needed; 00039 int min_params; 00042 long use_count; 00045 long total_bytes; 00046 }; 00047 00048 #endif 00049