10Duke Enterprise C++ Client
Loading...
Searching...
No Matches
LicensingRequest.h
1#ifndef TENDUKE_EE_LICENSING_AUTHZAPI_LICENSINGREQUEST_H
2#define TENDUKE_EE_LICENSING_AUTHZAPI_LICENSINGREQUEST_H
3
4namespace tenduke { namespace ee { namespace licensing { namespace authzapi {
5
6
11template<class T>
13{
14 public:
15 virtual ~LicensingRequest() = default;
16
28 virtual T execute() = 0;
29};
30
31
32}}}}
33
34#endif //TENDUKE_EE_LICENSING_AUTHZAPI_LICENSINGREQUEST_H
Licensing-related request.
Definition LicensingRequest.h:13
virtual T execute()=0
Execute the request synchronously.
Root for classes, functions and globals of 10Duke C++ Client.
Definition APIRequest.h:4