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