/* * Response.hpp * * Created on: Jul 14, 2021 * Author: Andreas Berthoud */ #ifndef RESPONSE_HPP_ #define RESPONSE_HPP_ #include "Notification.hpp" class Response : public Notification { public: Response(uint16_t response_identifier); virtual ~Response() {}; private: uint16_t response_identifier; }; #endif /* RESPONSE_HPP_ */