db_tool.h 437 B

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