Fix Mount Installation Failure
[platform/core/appfw/wgt-backend.git] / src / wgt / wgt_backend_data.h
1 // Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
2 // Use of this source code is governed by a apache 2.0 license that can be
3 // found in the LICENSE file.
4
5 #ifndef WGT_WGT_BACKEND_DATA_H_
6 #define WGT_WGT_BACKEND_DATA_H_
7
8 #include <common/installer_context.h>
9 #include <common/utils/property.h>
10
11 #include <wgt_manifest_handlers/appwidget_handler.h>
12 #include <wgt_manifest_handlers/content_handler.h>
13 #include <wgt_manifest_handlers/service_handler.h>
14 #include <wgt_manifest_handlers/setting_handler.h>
15
16 #include <string>
17 #include <vector>
18
19 namespace wgt {
20
21 /**
22  * \brief Class that is used within specific backends to keep additional
23  *        information regarding package
24  */
25 class WgtBackendData : public common_installer::BackendData {
26  public:
27   /**
28    * \brief Property of SettingInfo
29    */
30   Property<parse::SettingInfo> settings;
31
32   Property<parse::AppWidgetInfo> appwidgets;
33   Property<parse::ContentInfo> content;
34   Property<parse::ServiceList> service_list;
35 };
36
37 }  // namespace wgt
38
39 #endif  // WGT_WGT_BACKEND_DATA_H_