123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- #ifndef _AE_REPORT_ATTESTATION_ERROR_RESPONSE_H
- #define _AE_REPORT_ATTESTATION_ERROR_RESPONSE_H
- #include <IAEResponse.h>
- namespace aesm
- {
- namespace message
- {
- class Response_ReportAttestationErrorResponse;
- };
- };
- class AEReportAttestationResponse : public IAEResponse
- {
- public:
- AEReportAttestationResponse();
- AEReportAttestationResponse(aesm::message::Response_ReportAttestationErrorResponse& response);
- AEReportAttestationResponse(uint32_t errorCode, uint32_t UpdateInfoLength, const uint8_t* UpdateInfo);
- AEReportAttestationResponse(const AEReportAttestationResponse& other);
- ~AEReportAttestationResponse();
- AEMessage* serialize();
- bool inflateWithMessage(AEMessage* message);
- bool GetValues(uint32_t* errorCode, uint32_t updateInfoLength,uint8_t* updateInfo) const;
-
-
- AEReportAttestationResponse& operator=(const AEReportAttestationResponse& other);
-
- bool check();
- protected:
- void ReleaseMemory();
- aesm::message::Response_ReportAttestationErrorResponse* m_response;
- };
- #endif
|