summaryrefslogtreecommitdiff
path: root/include/commands/cmd_motd.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-04-20 18:46:25 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-04-20 18:46:25 +0000
commit65923c4d397ce3655473b2d25db5acc90aa78075 (patch)
treed490b8dba15f474ef5c7503fa17b55098addd5f1 /include/commands/cmd_motd.h
parent85cf2243e746777266e4fb2e8252ce17a05f16bb (diff)
Movement of cmd_* headers into include/commands (this is incomplete)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3896 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/commands/cmd_motd.h')
-rw-r--r--include/commands/cmd_motd.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/include/commands/cmd_motd.h b/include/commands/cmd_motd.h
new file mode 100644
index 000000000..78ceaad2c
--- /dev/null
+++ b/include/commands/cmd_motd.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_MOTD_H__
+#define __CMD_MOTD_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_motd : public command_t
+{
+ public:
+ cmd_motd () : command_t("MOTD",0,0) { }
+ void Handle(char **parameters, int pcnt, userrec *user);
+};
+
+#endif