Initial merge-commit of the OIC code. Should successfully do discovery for single...
[platform/upstream/iotivity.git] / include / OutOfProcServerWrapper.h
1 //******************************************************************
2 //
3 // Copyright 2014 Intel Corporation All Rights Reserved.
4 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
5
6 #ifndef _OUT_OF_PROC_SERVER_WRAPPER_H_
7 #define _OUT_OF_PROC_SERVER_WRAPPER_H_
8
9 #include <OCApi.h>
10
11 #include <OCReflect.h>
12
13 using namespace OC::OCReflect;
14
15 namespace OC
16 {
17     class OutOfProcServerWrapper : public IServerWrapper
18     {
19     public:
20         OutOfProcServerWrapper(PlatformConfig cfg) {};
21
22         void registerResource( const std::string& resourceURI,
23                                                     const std::string& resourceTypeName,
24                                                     named_property_binding_vector properties)
25         {
26         }
27
28     };
29 }
30
31 #endif