HomeWaterLeaksDetection
ILoggable.h
Go to the documentation of this file.
1 #ifndef I_LOGGABLE_H_
2 #define I_LOGGABLE_H_
3 
4 #include "Arduino.h"
5 
6 //==================ILoggable class=====================
7 
13 class ILoggable {
14 public:
17  virtual const String getLogDescription() const = 0;
18 
21  virtual const String getLogID() const = 0;
22 };
23 
24 #endif
ILoggable::getLogDescription
virtual const String getLogDescription() const =0
Returns the log description (body) of the class.
ILoggable
Definition: ILoggable.h:13
ILoggable::getLogID
virtual const String getLogID() const =0
Returns the log id of the class.