1
0

db_card.h 332 B

1234567891011121314151617
  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. std::unordered_map<uint64_t,std::shared_ptr<card_location_base>> load_person(int64_t id64,const std::string&);
  8. std::unordered_map<uint64_t,std::shared_ptr<card_location_base>> load_car(int64_t id64);
  9. }
  10. #endif