Friendly LWM2M client
InstEventObserver.h
Go to the documentation of this file.
1 #ifndef WPP_INST_EVENT_OBSERVER_H_
2 #define WPP_INST_EVENT_OBSERVER_H_
3 
4 #include "WppTypes.h"
5 
6 namespace wpp {
7 
8 class Instance;
9 
18 public:
19  virtual ~InstEventObserver() {};
25  virtual void instEvent(Instance &inst, EVENT_ID_T eventId) {};
26 };
27 
28 } // namespace wpp
29 
30 #endif /* WPP_INST_EVENT_OBSERVER_H_ */
The InstEventObserver class is an abstract base class that defines the interface for observing instan...
virtual void instEvent(Instance &inst, EVENT_ID_T eventId)
Notifies observer about the generation of a specific event for a specific implementation of the objec...
Instance is interface class that implements manipulation with derived class resources....
Definition: Instance.h:40
The WppConnection class represents a connection interface for the Wpp library.
Definition: WppClient.cpp:14
uint8_t EVENT_ID_T
Definition: WppTypes.h:18