123456789101112131415161718192021222324252627282930313233343536 |
- #pragma once
- #include "CppSQLite3.h"
- #include "dt.h"
- #include <string>
- #include <windows.h>
- #include <mutex>
- #include "CConfigBase.h"
- #include "CDataBaseOperate.h"
- namespace ns_db
- {
- using namespace std;
- #ifdef SECURITY_DLL
- #define DLL_SECURITY_API __declspec(dllexport)
- #else
- #define DLL_SECURITY_API
- #endif
- class DLL_SECURITY_API CSecurity : public CDataBaseOperate
- {
- public:
- CSecurity();
- private:
- LONG SaveDB() override;
- LONG LoadDB() override;
- };
- }
|