Remove boost dependency
[platform/core/appfw/app-installers.git] / src / common / step / filesystem / step_remove_temporary_directory.h
index 75fca26..1f62e39 100644 (file)
@@ -5,10 +5,10 @@
 #ifndef COMMON_STEP_FILESYSTEM_STEP_REMOVE_TEMPORARY_DIRECTORY_H_
 #define COMMON_STEP_FILESYSTEM_STEP_REMOVE_TEMPORARY_DIRECTORY_H_
 
-#include <boost/filesystem/path.hpp>
-
 #include <manifest_parser/utils/logging.h>
 
+#include <filesystem>
+
 #include "common/step/recovery/step_recovery.h"
 
 namespace common_installer {
@@ -31,7 +31,7 @@ class StepRemoveTemporaryDirectory : public recovery::StepRecovery {
   Status Cleanup() override;
 
  protected:
-  virtual bool ClearPath(const boost::filesystem::path& path);
+  virtual bool ClearPath(const std::filesystem::path& path);
 
  private:
   /**