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