Remove boost dependency
[platform/core/appfw/app-installers.git] / src / common / step / pkgmgr / step_unregister_app.cc
index 964f357..94e4e63 100644 (file)
@@ -6,12 +6,11 @@
 
 #include <unistd.h>
 
-#include <boost/filesystem.hpp>
-#include <boost/system/error_code.hpp>
 #include <pkgmgr_installer.h>
 #include <vcore/Certificate.h>
 
 #include <cassert>
+#include <filesystem>
 #include <string>
 
 #include "common/pkgmgr_registration.h"
@@ -35,7 +34,7 @@ Step::Status StepUnregisterApplication::precheck() {
     return Status::MANIFEST_NOT_FOUND;
   }
 
-  if (!boost::filesystem::exists(context_->xml_path.get())) {
+  if (!std::filesystem::exists(context_->xml_path.get())) {
     LOG(ERROR) << "xml_path ("
                << context_->xml_path.get()
                << ") path does not exist";