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