Remove boost dependency
[platform/core/appfw/app-installers.git] / src / common / plugins / plugin_manager.h
index 5f6c47c..f5b0e84 100644 (file)
@@ -5,10 +5,9 @@
 #ifndef COMMON_PLUGINS_PLUGIN_MANAGER_H_
 #define COMMON_PLUGINS_PLUGIN_MANAGER_H_
 
-#include <boost/filesystem/path.hpp>
-
 #include <pkgmgrinfo_basic.h>
 
+#include <filesystem>
 #include <memory>
 #include <string>
 #include <vector>
@@ -25,8 +24,8 @@ class PluginManager {
  public:
   using PluginInfoList = std::vector<std::shared_ptr<PluginInfo>>;
 
-  PluginManager(const boost::filesystem::path& xml_path,
-                const boost::filesystem::path& list_path,
+  PluginManager(const std::filesystem::path& xml_path,
+                const std::filesystem::path& list_path,
                 const std::string& pkgid,
                 manifest_x* manifest,
                 uid_t uid)