diff options
Diffstat (limited to 'include/cmd_motd.h')
-rw-r--r-- | include/cmd_motd.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/include/cmd_motd.h b/include/cmd_motd.h new file mode 100644 index 000000000..ce584fc5c --- /dev/null +++ b/include/cmd_motd.h @@ -0,0 +1,38 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2004 ChatSpike-Dev. + * E-mail: + * <brain.net> + * <Craig.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 |