1234567891011121314151617181920212223242526272829303132333435363738 |
- #ifndef _area_business_person_attendance_hpp_
- #define _area_business_person_attendance_hpp_
- #include"area_business.h"
- #include<rapidjson/document.h>
- #include<rapidjson/prettywriter.h>
- #include<rapidjson/stringbuffer.h>
- #include<websocket/sio/sio_client.h>
- struct area_business_person_attendance:area_business
- {
-
- void on_enter(const std::shared_ptr<area_hover>&a,const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data>&ptr);
- void on_hover(const std::shared_ptr<area_hover>&a,const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data> ptr);
-
- void on_leave(const std::shared_ptr<area_hover>&a,const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data> ptr);
-
-
-
-
- static void handle_up_mine(sio::message::ptr const& data);
- private:
-
- static void _to_json_card_up_one(std::shared_ptr<card_location_base> card_ptr,
- rapidjson::Value& out_datas, rapidjson::Document::AllocatorType& allocator);
- };
- #endif
|