Remove boost dependency
[platform/core/appfw/app-installers.git] / src / common / step / pkgmgr / step_recover_priv_sharedres.cc
1 // Copyright (c) 2021 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 #include "common/step/pkgmgr/step_recover_priv_sharedres.h"
6
7 #include "common/utils/paths.h"
8 #include "common/utils/pkgmgr_query.h"
9 #include "common/pkgmgr_registration.h"
10 #include "common/step/pkgmgr/step_remove_priv_sharedres.h"
11
12 namespace common_installer {
13 namespace pkgmgr {
14
15 Step::Status StepRecoverPrivSharedres::RecoveryUninstall() {
16   StepRemovePrivSharedres instance(context_);
17   return instance.process();
18 }
19
20 }  // namespace pkgmgr
21 }  // namespace common_installer