Fix WGT handlers includes
[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/setting_handler.h>
12
13 #include <string>
14 #include <vector>
15
16 namespace wgt {
17
18 /**
19  * \brief Class that is used within specific backends to keep additional
20  *        information regarding package
21  */
22 class WgtBackendData : public common_installer::BackendData {
23  public:
24   /**
25    * \brief Property of vector of files to add
26    */
27   Property<std::vector<std::string>> files_to_add;
28
29   /**
30    * \brief Property of vector of files to modify
31    */
32   Property<std::vector<std::string>> files_to_modify;
33
34   /**
35    * \brief Property of vector of files to delete
36    */
37   Property<std::vector<std::string>> files_to_delete;
38
39   /**
40    * \brief Property of SettingInfo
41    */
42   Property<parse::SettingInfo> settings;
43 };
44
45 }  // namespace wgt
46
47 #endif  // WGT_WGT_BACKEND_DATA_H_