Remove boost dependency
[platform/core/appfw/app-installers.git] / src / common / mount_base.h
index 0987716..c5ccde2 100644 (file)
@@ -5,7 +5,7 @@
 #ifndef COMMON_MOUNT_BASE_H_
 #define COMMON_MOUNT_BASE_H_
 
-#include <boost/filesystem/path.hpp>
+#include <filesystem>
 
 #include "common/step/step.h"
 #include "common/zip_interface.h"
@@ -21,7 +21,7 @@ class MountBase {
 
  protected:
   virtual std::unique_ptr<IZipInterface> CreateZipInterface(
-      const boost::filesystem::path& mount_path) = 0;
+      const std::filesystem::path& mount_path) = 0;
 };
 
 }  // namespace common_installer