db_card.h 404 B

123456789101112131415
  1. #ifndef _db_card_h_
  2. #define _db_card_h_
  3. struct card_location_base;
  4. #include <unordered_map>
  5. namespace db_card
  6. {
  7. //const std::string & lszId64 = 0010000001102
  8. std::unordered_map<uint64_t,std::shared_ptr<card_location_base>> load_person(const std::string & lszId64,const std::string&);
  9. std::unordered_map<uint64_t,std::shared_ptr<card_location_base>> load_car(const std::string & lszId64);
  10. }
  11. #endif