Initial merge-commit of the OIC code. Should successfully do discovery for single...
[platform/upstream/iotivity.git] / include / OutOfProcClientWrapper.h
1 //******************************************************************
2 //
3 // Copyright 2014 Intel Corporation All Rights Reserved.
4 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
5
6 #ifndef _OUT_OF_PROC_CLIENT_WRAPPER_H_
7 #define _OUT_OF_PROC_CLIENT_WRAPPER_H_
8
9 #include <OCApi.h>
10
11 namespace OC
12 {
13     class OutOfProcClientWrapper : public IClientWrapper
14     {
15     public:
16         OutOfProcClientWrapper(PlatformConfig cfg) { }
17         virtual int ListenForResource(const std::string& serviceUrl, const std::string& resourceType, std::function<void(OCResource::Ptr)>& callback) {return 0;}
18     };
19 }
20
21 #endif