Remove boost dependency
[platform/core/appfw/app-installers.git] / src / common / zip_interface.h
index 9d458c3..f4ba9a1 100644 (file)
@@ -5,7 +5,7 @@
 #ifndef COMMON_ZIP_INTERFACE_H_
 #define COMMON_ZIP_INTERFACE_H_
 
-#include <boost/filesystem/path.hpp>
+#include <filesystem>
 
 namespace common_installer {
 
@@ -16,7 +16,7 @@ class IZipInterface {
  public:
   virtual ~IZipInterface() = default;
 
-  virtual bool MountZip(const boost::filesystem::path& zip_path) = 0;
+  virtual bool MountZip(const std::filesystem::path& zip_path) = 0;
   virtual bool UnmountZip() = 0;
 };