Remove boost dependency
[platform/core/appfw/app-installers.git] / src / common / app_query_interface.h
index 5025e68..f5272ee 100644 (file)
@@ -3,9 +3,9 @@
 #ifndef COMMON_APP_QUERY_INTERFACE_H_
 #define COMMON_APP_QUERY_INTERFACE_H_
 
-#include <boost/filesystem.hpp>
 #include <sys/types.h>
 
+#include <filesystem>
 #include <string>
 
 namespace common_installer {
@@ -37,9 +37,9 @@ class AppQueryInterface {
   std::string GetPkgId(const std::string& arg) const;
 
  protected:
-  virtual boost::filesystem::path ExtractManifest(
+  virtual std::filesystem::path ExtractManifest(
       const std::string& from) const;
-  virtual bool ClearTemporaryFile(const boost::filesystem::path& path) const;
+  virtual bool ClearTemporaryFile(const std::filesystem::path& path) const;
 
  private:
   virtual std::string GetPkgIdFromPath(const std::string& path) const = 0;