123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- #ifndef _AE_EXCHANGE_REPORT_RESPONSE_H
- #define _AE_EXCHANGE_REPORT_RESPONSE_H
- #include <IAEResponse.h>
- #include <stdint.h>
- namespace aesm
- {
- namespace message
- {
- class Response_ExchangeReportResponse;
- };
- };
- class AEExchangeReportResponse : public IAEResponse
- {
- public:
- AEExchangeReportResponse();
- AEExchangeReportResponse(aesm::message::Response_ExchangeReportResponse& response);
- AEExchangeReportResponse(uint32_t errorCode, uint32_t dhMsg3Length, const uint8_t* dhMsg3);
- AEExchangeReportResponse(const AEExchangeReportResponse& other);
- ~AEExchangeReportResponse();
- AEMessage* serialize();
- bool inflateWithMessage(AEMessage* message);
- bool GetValues(uint32_t* errorCode, uint32_t dhMsg3Length, uint8_t* dhMsg3) const;
-
- AEExchangeReportResponse& operator=(const AEExchangeReportResponse& other);
-
- bool check();
- protected:
- void ReleaseMemory();
- aesm::message::Response_ExchangeReportResponse* m_response;
- };
- #endif
|