1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #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
|