chatcommand_removeuser.h 315 B

1234567891011121314
  1. #ifndef __CHATCOMMAND_REMOVEUSER_H
  2. #define __CHATCOMMAND_REMOVEUSER_H
  3. #include "chatcommand.h"
  4. #include "message.h"
  5. #include "chatclient.h"
  6. // Removes a user.
  7. class chatcommand_removeuser:chatcommand
  8. {
  9. public:
  10. static bool processmessage(char first_letter,message *received_message,chatclient *client);
  11. };
  12. #endif