LOM2M  0.8.0
Observer.h
Go to the documentation of this file.
1 /*
2  Copyright (c) 2013-2021 LAAS-CNRS (www.laas.fr)
3  7 Colonel Roche 31077 Toulouse - France
4 
5  The use of this source code requires an agreement with the CNRS.
6 
7  Initial Contributors:
8  David Gauchard, Guillaume Garzone, Thierry Monteil.
9 */
10 
11 #ifndef __LOM2M_OBSERVER_
12 #define __LOM2M_OBSERVER_
13 
14 #include "configuration.h"
15 
16 #include <vector>
17 #include <functional>
18 #include <Arduino.h>
19 
20 class Observer
21 {
22 public:
23  virtual void notify(const String& id) = 0;
24 };
25 
26 
27 #endif
Definition: Observer.h:21
virtual void notify(const String &id)=0