Remove boost dependency
[platform/core/appfw/app-installers.git] / src / common / step / mount / step_mount_recover.h
index 9236b76..23535fb 100644 (file)
@@ -7,6 +7,8 @@
 
 #include <manifest_parser/utils/logging.h>
 
+#include <filesystem>
+
 #include "common/installer_context.h"
 #include "common/mount_base.h"
 #include "common/step/recovery/step_recovery.h"
@@ -34,7 +36,7 @@ class StepMountRecover : public MountBase, public recovery::StepRecovery {
 
  private:
   std::unique_ptr<IZipInterface> CreateZipInterface(
-      const boost::filesystem::path& mount_path) override;
+      const std::filesystem::path& mount_path) override;
   Status UmountPackagePath();
 
   STEP_NAME(MountRecover)