diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-04-20 18:46:25 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-04-20 18:46:25 +0000 |
commit | 65923c4d397ce3655473b2d25db5acc90aa78075 (patch) | |
tree | d490b8dba15f474ef5c7503fa17b55098addd5f1 /include/commands/cmd_quit.h | |
parent | 85cf2243e746777266e4fb2e8252ce17a05f16bb (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_quit.h')
-rw-r--r-- | include/commands/cmd_quit.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/include/commands/cmd_quit.h b/include/commands/cmd_quit.h new file mode 100644 index 000000000..f60c4b6b0 --- /dev/null +++ b/include/commands/cmd_quit.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_QUIT_H__ +#define __CMD_QUIT_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_quit : public command_t +{ + public: + cmd_quit () : command_t("QUIT",0,0) { } + void Handle(char **parameters, int pcnt, userrec *user); +}; + +#endif |