Remove boost dependency
[platform/core/appfw/app-installers.git] / src / common / step / filesystem / step_create_icons.h
index 1e9d0d5..8fdf165 100644 (file)
@@ -5,10 +5,9 @@
 #ifndef COMMON_STEP_FILESYSTEM_STEP_CREATE_ICONS_H_
 #define COMMON_STEP_FILESYSTEM_STEP_CREATE_ICONS_H_
 
-#include <boost/filesystem/path.hpp>
-
 #include <manifest_parser/utils/logging.h>
 
+#include <filesystem>
 #include <string>
 #include <utility>
 #include <vector>
@@ -43,7 +42,7 @@ class StepCreateIcons : public Step {
   Status precheck() override { return Status::OK; }
 
  private:
-  std::vector<boost::filesystem::path> icons_;
+  std::vector<std::filesystem::path> icons_;
 
   STEP_NAME(CreateIcons)
 };