Merge "TA1622 - Updated the copyright company from Intel Corporation to Intel Mobile...
[platform/upstream/iotivity.git] / include / OCObserver.h
1 //******************************************************************
2 //
3 // Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 //
7 // Licensed under the Apache License, Version 2.0 (the "License");
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
10 //
11 //      http://www.apache.org/licenses/LICENSE-2.0
12 //
13 // Unless required by applicable law or agreed to in writing, software
14 // distributed under the License is distributed on an "AS IS" BASIS,
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 // See the License for the specific language governing permissions and
17 // limitations under the License.
18 //
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21 /// @file OCObserver.h 
22
23 /// @brief      This file contains the declaration of classes and its members related to 
24 ///                     OCObserver.
25
26 #ifndef __OCOBSERVER_H
27 #define __OCOBSERVER_H
28
29 #include <string>
30
31 #include "OCObserver.h"
32
33 namespace OC 
34 {
35         /* It allows an app to register a method handler to monitor for 
36         state changes on a resource. Not all resource attributes are observable. 
37         */
38         class OCObserver
39         {
40         public:
41                 OCObserver(void);
42
43                 virtual ~OCObserver(void);
44         };
45
46         /* It is likely that these signatures will change somewhat: */
47         template <typename HandlerT, typename ResourceT>
48         void bind_observer(HandlerT handler, ResourceT& resource, const std::string& name)
49         {};
50
51         // unbind the specified handler:
52         template <typename HandlerT, typename ResourceT>
53         void unbind_observer(HandlerT handler, ResourceT& resource)
54         {};
55
56         // unbind by name:
57         template <typename HandlerT, typename ResourceT>
58         void unbind_observer(HandlerT handler, ResourceT& resource, const std::string& name)
59         {};
60
61 } // namespace OC
62
63 #endif //__OCOBSERVER_H