Remove boost dependency
[platform/core/appfw/app-installers.git] / src / common / step / mount / step_mount_update.h
index 99ed4fe..8f12b51 100644 (file)
@@ -5,10 +5,10 @@
 #ifndef COMMON_STEP_MOUNT_STEP_MOUNT_UPDATE_H_
 #define COMMON_STEP_MOUNT_STEP_MOUNT_UPDATE_H_
 
-#include <boost/filesystem/path.hpp>
-
 #include <manifest_parser/utils/logging.h>
 
+#include <filesystem>
+
 #include "common/installer_context.h"
 #include "common/mount_base.h"
 #include "common/step/step.h"
@@ -41,11 +41,11 @@ class StepMountUpdate : public MountBase, public Step {
 
  protected:
   std::unique_ptr<IZipInterface> CreateZipInterface(
-      const boost::filesystem::path& mount_path) override;
+      const std::filesystem::path& mount_path) override;
   Status UmountPackagePath();
 
  private:
-  boost::filesystem::path backup_path_;
+  std::filesystem::path backup_path_;
 
   STEP_NAME(MountUpdate)
 };