chatcommand_removechatroom.h 335 B

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