12345678910111213141516171819202122232425262728293031323334353637383940 |
- #ifndef MODULE_CALL_HELP_H
- #define MODULE_CALL_HELP_H
- #include "module_singleton_base.h"
- #include"card.h"
- #include"websocket/sio/sio_client.h"
- class module_call_help : public singleton_base<module_call_help>
- {
- private:
- friend class singleton_base<module_call_help>;
- module_call_help()
- {
- }
- public:
-
- void rev_from_card_help(std::shared_ptr<card_location_base> card_ptr);
-
- void accept_web_deal_help(sio::message::ptr const& data);
- static std::string get_json_help();
- };
- #endif
|