Remove boost dependency
[platform/core/appfw/app-installers.git] / src / common / step / configuration / step_parse_manifest.h
index 58f360b..ba09c75 100644 (file)
@@ -5,8 +5,6 @@
 #ifndef COMMON_STEP_CONFIGURATION_STEP_PARSE_MANIFEST_H_
 #define COMMON_STEP_CONFIGURATION_STEP_PARSE_MANIFEST_H_
 
-#include <boost/filesystem.hpp>
-
 #include <common/installer/app_installer.h>
 #include <common/installer_context.h>
 #include <common/step/step.h>
@@ -16,6 +14,7 @@
 #include <tpk_manifest_handlers/tpk_config_parser.h>
 #include <tpk_manifest_handlers/ui_and_service_application_infos.h>
 
+#include <filesystem>
 #include <memory>
 #include <set>
 #include <string>
@@ -58,7 +57,7 @@ class StepParseManifest : public common_installer::Step {
 
  protected:
   bool LocateConfigFile();
-  boost::filesystem::path path_;
+  std::filesystem::path path_;
 
  private:
   bool FillInstallationInfo(manifest_x* manifest);