Remove boost dependency
[platform/core/appfw/app-installers.git] / src / common / step / filesystem / step_recover_files.h
index 0b1dcd3..0c79862 100644 (file)
@@ -5,10 +5,10 @@
 #ifndef COMMON_STEP_FILESYSTEM_STEP_RECOVER_FILES_H_
 #define COMMON_STEP_FILESYSTEM_STEP_RECOVER_FILES_H_
 
-#include <boost/filesystem/path.hpp>
-
 #include <manifest_parser/utils/logging.h>
 
+#include <filesystem>
+
 #include "common/installer_context.h"
 #include "common/step/recovery/step_recovery.h"
 
@@ -35,7 +35,7 @@ class StepRecoverFiles : public recovery::StepRecovery {
   Status Cleanup() override;
 
  protected:
-  virtual bool ClearPath(const boost::filesystem::path& path);
+  virtual bool ClearPath(const std::filesystem::path& path);
 
   STEP_NAME(RecoverFiles)
 };