Remove boost dependency
[platform/core/appfw/app-installers.git] / src / common / step / filesystem / step_remove_icons.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 COMMON_STEP_FILESYSTEM_STEP_REMOVE_ICONS_H_
6 #define COMMON_STEP_FILESYSTEM_STEP_REMOVE_ICONS_H_
7
8 #include <manifest_parser/utils/logging.h>
9
10 #include <utility>
11 #include <vector>
12
13 #include "common/installer_context.h"
14 #include "common/step/step.h"
15
16 namespace common_installer {
17 namespace filesystem {
18
19 class StepRemoveIcons : public Step {
20  public:
21   using Step::Step;
22
23   Status process() override;
24   Status clean() override { return Status::OK; }
25   Status undo() override { return Status::OK; }
26   Status precheck() override;
27
28   STEP_NAME(RemoveIcons)
29 };
30
31 }  // namespace filesystem
32 }  // namespace common_installer
33
34 #endif  // COMMON_STEP_FILESYSTEM_STEP_REMOVE_ICONS_H_