| 1234567891011121314151617181920212223 |
- #pragma once
- #include "im/handler.h"
- namespace im {
- class MessageHandler : public IHandler {
- protected:
- void handle() override;
- private:
- void on_chat();
- void on_conv_list();
- void on_history();
- void on_delete_conv();
- void on_set_unread();
- void on_put_file();
- void on_get_file();
- void on_delete_msg();
- void on_group_chat();
- };
- } // namespace im
|