chatcommand_joinchatroom.h 412 B

123456789101112131415
  1. #ifndef __CHATCOMMAND_JOINCHATROOM_H
  2. #define __CHATCOMMAND_JOINCHATROOM_H
  3. #include "chatcommand.h"
  4. #include "message.h"
  5. #include "chatclient.h"
  6. // Joins a chatroom.
  7. // joinchatroom(messageid,chatroomid,leave_other_chatrooms,answerhashed,server_password)
  8. class chatcommand_joinchatroom:chatcommand
  9. {
  10. public:
  11. static bool processmessage(char first_letter,message *received_message,chatclient *client);
  12. };
  13. #endif