You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

23 lines
352 B

/*
* 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_ */