19#ifndef SRC_SUPLA_NETWORK_HTML_CHANNEL_CORRECTION_H_ 
   20#define SRC_SUPLA_NETWORK_HTML_CHANNEL_CORRECTION_H_ 
   22#include <supla/network/html_element.h> 
   28class ChannelCorrection : 
public HtmlElement {
 
   30  explicit ChannelCorrection(
int channelNumber, 
const char *displayName,
 
   32  virtual ~ChannelCorrection();
 
   34  bool handleResponse(
const char* key, 
const char* value) 
override;
 
   37  int channelNumber = -1;
 
   39  char *displayName = 
nullptr;
 
 
Definition web_sender.h:28