Tizen 2.0 Release
[apps/home/wrt-setting.git] / webapp-detail / feature.h
1 /*
2   * Copyright 2012  Samsung Electronics Co., Ltd
3   *
4   * Licensed under the Flora License, Version 1.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://floralicense.org/license/
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
17 #ifndef WEB_SRC_SETTING_WEBAPP_DETAIL_FEATURE_H_
18 #define WEB_SRC_SETTING_WEBAPP_DETAIL_FEATURE_H_
19
20 #include <dpl/wrt-dao-rw/widget_dao.h>
21 #include <ace-settings/ace_api_settings.h>
22
23 namespace WebAppDetailSetting {
24
25 class Feature
26 {
27     std::string m_name;
28     std::string m_uri;
29     ace_preference_t m_perm;
30
31   public:
32     Feature(const char *name = NULL, const char *uri = NULL) :
33         m_perm(ACE_PREFERENCE_DEFAULT)
34     {
35         if (name)
36             m_name.assign(name);
37         if (uri)
38             m_uri.assign(uri);
39     }
40     void setPerm(ace_preference_t perm) { m_perm = perm; }
41
42     std::string& getName(void) { return m_name; }
43     std::string& getUri(void) { return m_uri; }
44     ace_preference_t getPerm(void) { return m_perm; }
45 };
46
47 } /* WebAppDetailSetting */
48
49 #endif /* WEB_SRC_SETTING_WEBAPP_DETAIL_FEATURE_H_ */