identt
ValidationSessionTable.hpp
Go to the documentation of this file.
1 
33 #ifndef _IDENTT_STORE_VALIDATION_SESSION_TABLE_HPP_
34 #define _IDENTT_STORE_VALIDATION_SESSION_TABLE_HPP_
35 
36 #include "StoreTable.hpp"
37 
38 namespace identt {
39 namespace store {
40 class ValidationSessionTable : public StoreTable<ValidationSessionT> {
41 public:
45 
53  ValidationSessionTable(dbpointer trydb);
54 
60 
65  ValidationSessionTable() = delete;
66  ValidationSessionTable(const std::string, const size_t) = delete;
68  ValidationSessionTable& operator=(const ValidationSessionTable&) = delete;
69 
70 
71 protected:
72 
88  std::string GetKey(ValidationSessionT* record, KeyTypeE keytype, bool pre) override;
89 
90 };
91 } // namespace store
92 } // namespace identt
93 #endif /* _IDENTT_STORE_VALIDATION_SESSION_TABLE_HPP_ */
Definition: ValidationSessionTable.hpp:40
virtual ~ValidationSessionTable()
Destructor.
Definition: ValidationSessionTable.hpp:59
Definition: StoreTable.hpp:44
Definition: CryptoBase.hpp:49
std::string GetKey(ValidationSessionT *record, KeyTypeE keytype, bool pre) override
GetKey: get a key.
Definition: ValidationSessionTable.cc:53
ValidationSessionTable()=delete
make noncopyable and remove default