12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- #ifndef __AE_GET_WHITE_LIST_RESPONSE_H
- #define __AE_GET_WHITE_LIST_RESPONSE_H
- #include <IAEResponse.h>
- #include <stdint.h>
- namespace aesm
- {
- namespace message
- {
- class Response_GetWhiteListResponse;
- };
- };
- class AEGetWhiteListResponse : public IAEResponse
- {
- public:
- AEGetWhiteListResponse();
- AEGetWhiteListResponse(aesm::message::Response_GetWhiteListResponse& response);
- AEGetWhiteListResponse(uint32_t errorCode, uint32_t whiteListLength, const uint8_t * whiteList);
- AEGetWhiteListResponse(const AEGetWhiteListResponse& other);
- ~AEGetWhiteListResponse();
-
- bool inflateWithMessage(AEMessage* message);
-
- AEMessage* serialize();
- bool GetValues(uint32_t* errorCode, uint32_t whiteListLength, uint8_t * whiteList) const;
-
- AEGetWhiteListResponse& operator=(const AEGetWhiteListResponse &other);
-
- bool check();
- protected:
- void ReleaseMemory();
- aesm::message::Response_GetWhiteListResponse* m_response;
- };
- #endif
|