Remove boost dependency
[platform/core/appfw/app-installers.git] / src / common / utils / manifest_util.h
index e2f07ea..d29582f 100644 (file)
@@ -8,16 +8,17 @@
 #include <pkgmgr-info.h>
 #include <pkgmgr/pkgmgr_parser.h>
 
-#include <boost/filesystem.hpp>
+#include <filesystem>
 #include <string>
 
-namespace bf = boost::filesystem;
+namespace fs = std::filesystem;
+
 namespace common_installer {
 
 manifest_x* PkgmgrGenerateManifestInfoFromDB(const std::string& pkgid,
                                              uid_t uid);
 
-bf::path GetManifestLocation(const std::string& pkgid,
+fs::path GetManifestLocation(const std::string& pkgid,
                              uid_t uid,
                              bool is_readonly);