Initial merge-commit of the OIC code. Should successfully do discovery for single...
[platform/upstream/iotivity.git] / examples / client / MyObserverHandler.h
1 //******************************************************************
2 //
3 // Copyright 2014 Intel Corporation All Rights Reserved.
4 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
5
6 #include "OCApi.h"
7 #include "OCObserverHandler.h"
8
9 namespace OC {
10
11 class MyObserverHandler :
12         public OC::OCObserverHandler
13 {
14 public:
15         void onObserverUpdate(std::string propertyName, void *value);
16 };
17
18 } // namespace OC