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