summaryrefslogtreecommitdiff
path: root/include/commands/cmd_loadmodule.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/commands/cmd_loadmodule.h')
-rw-r--r--include/commands/cmd_loadmodule.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/include/commands/cmd_loadmodule.h b/include/commands/cmd_loadmodule.h
new file mode 100644
index 000000000..d9ee5ad4b
--- /dev/null
+++ b/include/commands/cmd_loadmodule.h
@@ -0,0 +1,38 @@
+/* +------------------------------------+
+ * | Inspire Internet Relay Chat Daemon |
+ * +------------------------------------+
+ *
+ * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
+ * E-mail:
+ * <brain@chatspike.net>
+ * <Craig@chatspike.net>
+ *
+ * Written by Craig Edwards, Craig McLure, and others.
+ * This program is free but copyrighted software; see
+ * the file COPYING for details.
+ *
+ * ---------------------------------------------------
+ */
+
+#ifndef __CMD_LOADMODULE_H__
+#define __CMD_LOADMODULE_H__
+
+// include the common header files
+
+#include <typeinfo>
+#include <iostream>
+#include <string>
+#include <deque>
+#include <sstream>
+#include <vector>
+#include "users.h"
+#include "channels.h"
+
+class cmd_loadmodule : public command_t
+{
+ public:
+ cmd_loadmodule () : command_t("LOADMODULE",'o',1) { }
+ void Handle(char **parameters, int pcnt, userrec *user);
+};
+
+#endif