Add cloud provisioning feature & modify mediator C++ class in easy setup
[platform/upstream/iotivity.git] / service / easy-setup / mediator / richsdk / src / EasySetup.cpp
1 //******************************************************************
2 //
3 // Copyright 2015 Samsung Electronics 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 #include "EasySetup.h"
22
23 #include "logger.h"
24 #include "ESException.h"
25 #include "RemoteEnrollee.h"
26
27 namespace OIC
28 {
29     namespace Service
30     {
31         #define EASYSETUP_TAG "EASY_SETUP"
32
33         EasySetup * EasySetup::s_instance = nullptr;
34
35         EasySetup::EasySetup()
36         {
37
38         }
39
40         EasySetup* EasySetup::getInstance ()
41         {
42             if (s_instance == nullptr)
43             {
44                 s_instance = new EasySetup ();
45             }
46             return s_instance;
47         }
48
49         std::shared_ptr<RemoteEnrollee> EasySetup::createRemoteEnrollee ()
50         {
51             return std::shared_ptr< RemoteEnrollee > (new RemoteEnrollee());
52         }
53     }
54 }
55