db_tool.h 234 B

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