chatcommand_login.h 281 B

12345678910111213
  1. #ifndef __CHATCOMMAND_LOGIN_H
  2. #define __CHATCOMMAND_LOGIN_H
  3. #include "chatcommand.h"
  4. #include "message.h"
  5. #include "chatclient.h"
  6. class chatcommand_login:chatcommand
  7. {
  8. public:
  9. static bool processmessage(char first_letter,message *received_message,chatclient *client);
  10. };
  11. #endif