Implement hybrid webapplication installation
[platform/core/appfw/wgt-backend.git] / src / wgt / wgt_installer.h
1 // Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
2 // Use of this source code is governed by an apache-2.0 license that can be
3 // found in the LICENSE file.
4
5 #ifndef WGT_WGT_INSTALLER_H_
6 #define WGT_WGT_INSTALLER_H_
7
8 #include <common/app_installer.h>
9
10 namespace wgt {
11
12 /**
13  * \brief The WgtInstaller class
14  *        Subclass of AppInstaller class dedicated for handling wgt request
15  *
16  * Performs all types of requests of wgt packages and sets required sequence of
17  * steps
18  */
19 class WgtInstaller : public common_installer::AppInstaller {
20  public:
21   /**
22    * \brief Explicit constructor
23    *
24    * \param pkgmgr pointer to pkgmgr
25    */
26   explicit WgtInstaller(common_installer::PkgMgrPtr pkgrmgr);
27 };
28
29 }  // namespace wgt
30
31 #endif  // WGT_WGT_INSTALLER_H_