Remove boost dependency
[platform/core/appfw/app-installers.git] / src / common / step / filesystem / step_move_installed_storage.h
index 89d1844..38e7353 100644 (file)
@@ -5,6 +5,8 @@
 #ifndef COMMON_STEP_FILESYSTEM_STEP_MOVE_INSTALLED_STORAGE_H_
 #define COMMON_STEP_FILESYSTEM_STEP_MOVE_INSTALLED_STORAGE_H_
 
+#include <filesystem>
+
 #include "common/installer_context.h"
 #include "common/step/step.h"
 
@@ -32,10 +34,10 @@ class StepMoveInstalledStorage : public Step {
   bool MoveExtended();
   bool MoveBackExtended();
 
-  boost::filesystem::path old_tep_location_;
-  boost::filesystem::path new_tep_location_;
-  boost::filesystem::path old_pkg_location_;
-  boost::filesystem::path new_pkg_location_;
+  std::filesystem::path old_tep_location_;
+  std::filesystem::path new_tep_location_;
+  std::filesystem::path old_pkg_location_;
+  std::filesystem::path new_pkg_location_;
   MoveType move_type_;
 
   STEP_NAME(MoveInstalledStorage)