1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- #ifndef _AE_INVOKE_SERVICE_RESPONSE_H
- #define _AE_INVOKE_SERVICE_RESPONSE_H
- #include <IAEResponse.h>
- #include <stdint.h>
- namespace aesm
- {
- namespace message
- {
- class Response_InvokeServiceResponse;
- };
- };
- class AEInvokeServiceResponse : public IAEResponse
- {
- public:
- AEInvokeServiceResponse();
- AEInvokeServiceResponse(aesm::message::Response_InvokeServiceResponse& response);
- AEInvokeServiceResponse(uint32_t errorCode, uint32_t pseMessageLength, const uint8_t* pseMessage);
- AEInvokeServiceResponse(const AEInvokeServiceResponse& other);
- ~AEInvokeServiceResponse();
- AEMessage* serialize();
- bool inflateWithMessage(AEMessage* message);
- bool GetValues(uint32_t* errorCode, uint32_t pseMessageLength, uint8_t* pseMessage) const;
-
- AEInvokeServiceResponse& operator=(const AEInvokeServiceResponse& other);
-
- bool check();
- protected:
- void ReleaseMemory();
- aesm::message::Response_InvokeServiceResponse* m_response;
- };
- #endif
|