/* +------------------------------------+ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * * Inspire is copyright (C) 2002-2004 ChatSpike-Dev. * E-mail: * * * * Written by Craig Edwards, Craig McLure, and others. * This program is free but copyrighted software; see * the file COPYING for details. * * --------------------------------------------------- */ #ifndef __CMD_USER_H__ #define __CMD_USER_H__ // include the common header files #include #include #include #include #include #include #include "users.h" #include "channels.h" class cmd_user : public command_t { public: cmd_user () : command_t("USER",,) { } void Handle(char **parameters, int pcnt, userrec *user); }; #endif