chatcommand_getusers.h 244 B

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