Remove boost dependency
[platform/core/appfw/app-installers.git] / src / common / tzip_interface.h
index 69e0026..87fde01 100644 (file)
@@ -5,10 +5,9 @@
 #ifndef COMMON_TZIP_INTERFACE_H_
 #define COMMON_TZIP_INTERFACE_H_
 
-#include <boost/filesystem/path.hpp>
-
 #include <common/zip_interface.h>
 
+#include <filesystem>
 #include <memory>
 #include <string>
 
@@ -16,10 +15,10 @@ namespace common_installer {
 
 class TzipInterface : public common_installer::IZipInterface {
  public:
-  explicit TzipInterface(const boost::filesystem::path& mount_path);
+  explicit TzipInterface(const std::filesystem::path& mount_path);
   ~TzipInterface();
 
-  bool MountZip(const boost::filesystem::path& zip_path) override;
+  bool MountZip(const std::filesystem::path& zip_path) override;
   bool UnmountZip() override;
 
  private: