Merge "Change registerParametricMethod/regiterNonPrametricMethod to expose" into...
[platform/core/security/ode.git] / server / progress-vconf-backend.cpp
1 /*
2  *  Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *  Licensed under the Apache License, Version 2.0 (the "License");
5  *  you may not use this file except in compliance with the License.
6  *  You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License
15  */
16 #include "progress-vconf-backend.h"
17
18 namespace ode {
19
20 VConfBackend::VConfBackend(const std::string &k)
21         : key(k)
22 {
23 }
24
25 VConfBackend::~VConfBackend()
26 {
27 }
28
29 void VConfBackend::update(int value)
30 {
31         // TODO
32         int ret = 0;
33         ret = ::vconf_set_str(key.c_str(), std::to_string(value).c_str());
34         if (ret != 0) {
35                 /* [TBD] throw exception */
36         }
37 }
38 #if 0
39 const std::string VconfBackend::getProgress(void)
40 {
41         return ::vconf_get_str(key.c_str());
42 }
43 #endif
44
45 } // namespace ode