Remove boost dependency
[platform/core/appfw/app-installers.git] / src / common / step / filesystem / step_recover_icons.h
index 4e3692e..da3bf4c 100644 (file)
@@ -5,10 +5,9 @@
 #ifndef COMMON_STEP_FILESYSTEM_STEP_RECOVER_ICONS_H_
 #define COMMON_STEP_FILESYSTEM_STEP_RECOVER_ICONS_H_
 
-#include <boost/filesystem/path.hpp>
-
 #include <manifest_parser/utils/logging.h>
 
+#include <filesystem>
 #include <set>
 #include <string>
 #include <utility>
@@ -37,7 +36,7 @@ class StepRecoverIcons : public recovery::StepRecovery {
  private:
   bool TryGatherIcons();
 
-  std::set<std::pair<boost::filesystem::path, boost::filesystem::path>>
+  std::set<std::pair<std::filesystem::path, std::filesystem::path>>
       icons_;
 
   STEP_NAME(RecoverIcons)