10Duke Enterprise C++ Client
Loading...
Searching...
No Matches
LicenseRenewResponse.h
1#ifndef LICENSING_CLIENT_LICENSERENEWRESPONSE_H
2#define LICENSING_CLIENT_LICENSERENEWRESPONSE_H
3
4#include "../checkout/LicenseCheckoutResponse.h"
5
6namespace tenduke { namespace ee { namespace licensing {
7
14{
15public:
22 const std::map<std::string, tenduke::ee::licensing::Lease> &leases,
23 const std::map<std::string, tenduke::ee::licensing::LicensingError> &errors
24 ) : ::tenduke::ee::licensing::LicenseCheckoutResponse(leases, errors)
25 {}
26};
27
28}}}
29
30#endif //LICENSING_CLIENT_LICENSERENEWRESPONSE_H
Response from license checkout request.
Definition LicenseCheckoutResponse.h:24
const std::map< std::string, tenduke::ee::licensing::Lease > leases
Leases, that is, successfully checked out licenses.
Definition LicenseCheckoutResponse.h:48
Response from license renew -request.
Definition LicenseRenewResponse.h:14
LicenseRenewResponse(const std::map< std::string, tenduke::ee::licensing::Lease > &leases, const std::map< std::string, tenduke::ee::licensing::LicensingError > &errors)
Constructs new instance.
Definition LicenseRenewResponse.h:21
const std::map< std::string, tenduke::ee::licensing::LicensingError > errors
Errors of this response.
Definition LicensingResponse.h:50
Root for classes, functions and globals of 10Duke C++ Client.
Definition APIRequest.h:4