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