Implement ManifestDirectInstall and ManifestDirectUpdate request handling
[platform/core/appfw/wgt-backend.git] / src / hybrid / hybrid_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 HYBRID_HYBRID_INSTALLER_H_
6 #define HYBRID_HYBRID_INSTALLER_H_
7
8 #include "common/app_installer.h"
9 #include "common/pkgmgr_interface.h"
10
11 namespace hybrid {
12
13 /**
14  * @brief The TpkInstaller class
15  *        Handles request of installation of native part of hybrid package.
16  *
17  * Pkgmgr request is parsed within and sequence of steps is built to be run.
18  *
19  * This backend is called by wgt-backend if it encounters hybrid package to
20  * install native part of that package.
21  */
22 class HybridInstaller : public common_installer::AppInstaller {
23  public:
24   explicit HybridInstaller(common_installer::PkgMgrPtr pkgmgr);
25
26   SCOPE_LOG_TAG(HybridInstaller)
27 };
28
29 }  // namespace hybrid
30
31 #endif  // HYBRID_HYBRID_INSTALLER_H_