HomeWaterLeaksDetection
HTMLDataSource.h
Go to the documentation of this file.
1 #ifndef HTML_DATA_SOURCE_H
2 #define HTML_DATA_SOURCE_H
3 
4 #include "Arduino.h"
5 
6 //==============HTMLDataSource class====================
7 
16 public:
17  const static String UNDEFINED_DATA;
18 
19 public:
27  virtual const String getHTMLData(const int id) const = 0;
28 };
29 
30 #endif
HTMLDataSource::UNDEFINED_DATA
static const String UNDEFINED_DATA
string "UNDEFINED"
Definition: HTMLDataSource.h:17
HTMLDataSource::getHTMLData
virtual const String getHTMLData(const int id) const =0
If a class is registered as a source of data for the HTML content, it needs return the appropriate va...
HTMLDataSource
Definition: HTMLDataSource.h:15