Remove boost dependency
[platform/core/appfw/app-installers.git] / src / common / step / backup / step_backup_icons.h
index 4c3a5f4..a4865b5 100644 (file)
@@ -5,8 +5,9 @@
 #ifndef COMMON_STEP_BACKUP_STEP_BACKUP_ICONS_H_
 #define COMMON_STEP_BACKUP_STEP_BACKUP_ICONS_H_
 
-#include <boost/filesystem/path.hpp>
 #include <manifest_parser/utils/logging.h>
+
+#include <filesystem>
 #include <utility>
 #include <vector>
 
@@ -52,9 +53,9 @@ class StepBackupIcons : public Step {
   bool BackupIcons();
   void RemoveBackupIcons();
   void GetIconInfo();
-  void AddAppIconToList(boost::filesystem::path path);
+  void AddAppIconToList(std::filesystem::path path);
 
-  std::vector<std::pair<boost::filesystem::path, boost::filesystem::path>>
+  std::vector<std::pair<std::filesystem::path, std::filesystem::path>>
       icons_;
   const char* extra_icon_path_;