use enum class for status
Change-Id: Iaba23e0754335a7fecec2d6c4b3446988b2fd9d0
diff --git a/src/client-module.hpp b/src/client-module.hpp
index eefccad..f90cff3 100644
--- a/src/client-module.hpp
+++ b/src/client-module.hpp
@@ -55,7 +55,7 @@
return m_config;
}
- int
+ Status
getApplicationStatus() const
{
return m_status;
@@ -135,7 +135,7 @@
Name m_identityName;
std::string m_requestId = "";
- int m_status = STATUS_NOT_STARTED;
+ Status m_status = Status::NOT_STARTED;
std::string m_challengeStatus = "";
std::string m_challengeType = "";
std::string m_certId = "";