identt
InviteService.hpp
1 
33 #ifndef _IDENTT_STORE_INVITE_SERVICE_HPP_
34 #define _IDENTT_STORE_INVITE_SERVICE_HPP_
35 
36 #include <query/QueryBase.hpp>
37 #include <store/StoreBase.hpp>
38 
39 namespace identt {
40 namespace store {
41 
42 class InviteService : public StoreBase {
43 public:
44 
58  void StoreInviteAction(::identt::utils::SharedTable::pointer stptr,
59  identt::query::StoreInviteDataT* inv);
60 
61 };
62 } // namespace query
63 } // namespace identt
64 
65 #endif // _IDENTT_STORE_INVITE_SERVICE_HPP_
Definition: StoreBase.hpp:58
void StoreInviteAction(::identt::utils::SharedTable::pointer stptr, identt::query::StoreInviteDataT *inv)
StoreInviteAction : invite query internals.
Definition: InviteService.cc:52
Definition: CryptoBase.hpp:49
Definition: InviteService.hpp:42