1
0

db_tool.h 362 B

1234567891011121314151617
  1. #ifndef _tool_db_h_
  2. #define _tool_db_h_
  3. #include <memory>
  4. #include <chrono>
  5. struct card_location_base;
  6. struct area_hover;
  7. namespace db_tool
  8. {
  9. void PushAsync(const char* sql);
  10. void save_attendance(const std::shared_ptr<card_location_base>& card_ptr,
  11. const std::shared_ptr<area_hover>& area_hover_ptr);
  12. }
  13. #endif