HomeWaterLeaksDetection
IDisplayable.h
Go to the documentation of this file.
1 #ifndef I_DISPLAYABLE_H_
2 #define I_DISPLAYABLE_H_
3 
4 #include "Arduino.h"
5 
6 //================IDisplayable class====================
7 
12 class IDisplayable {
13 public:
22  virtual const String getRow(int row) const = 0;
23 };
24 
25 #endif
IDisplayable::getRow
virtual const String getRow(int row) const =0
Returns the content of the row given as a parameter.
IDisplayable
Definition: IDisplayable.h:12