123456789101112131415 |
- #ifndef _db_card_h_
- #define _db_card_h_
- struct card_location_base;
- #include <unordered_map>
- namespace db_card
- {
- //const std::string & lszId64 = 0010000001102
- std::unordered_map<uint64_t,std::shared_ptr<card_location_base>> load_person(const std::string & lszId64,const std::string&);
- std::unordered_map<uint64_t,std::shared_ptr<card_location_base>> load_car(const std::string & lszId64);
- }
- #endif
|