Remove boost dependency
[platform/core/appfw/app-installers.git] / src / common / step / security / step_recover_signature.h
index 25e3dcf..b45a698 100644 (file)
@@ -5,9 +5,10 @@
 #ifndef COMMON_STEP_SECURITY_STEP_RECOVER_SIGNATURE_H_
 #define COMMON_STEP_SECURITY_STEP_RECOVER_SIGNATURE_H_
 
-#include <boost/filesystem/path.hpp>
 #include <manifest_parser/utils/logging.h>
 
+#include <filesystem>
+
 #include "common/installer_context.h"
 #include "common/step/recovery/step_recovery.h"
 
@@ -34,7 +35,7 @@ class StepRecoverSignature : public recovery::StepRecovery {
   Status Cleanup() override;
 
  private:
-  virtual boost::filesystem::path GetSignatureRoot() = 0;
+  virtual std::filesystem::path GetSignatureRoot() = 0;
 
   STEP_NAME(RecoverSignature)
 };