5#pragma warning(disable:4251)
11 class __declspec(dllexport) RunResult {
13 const static uint32_t successCode = 0;
14 const static uint32_t genericErrorCode = 1;
18 return m_value == successCode;
21 void setAsError(uint32_t _errorCode)
23 if (_errorCode == successCode)
25 m_value = genericErrorCode;
26 m_fallBackToGenericErrorCode =
true;
34 uint32_t getErrorCode()
const
39 void setErrorMessage(
const std::string& _message)
43 void addToErrorMessage(
const std::string& _message)
45 m_message += _message;
48 const std::string getErrorMessage()
const
50 if (m_fallBackToGenericErrorCode)
52 return m_message + std::string(
"\nOrriginal error code was 0 (success), but it was logged as error");
57 RunResult() =
default;
58 RunResult& operator=(
const RunResult& _other) =
default;
59 RunResult& operator=(RunResult&& _other) =
default;
62 RunResult(
const RunResult& _other) =
default;
63 RunResult(RunResult&& _other) =
default;
67 return m_value == _other.m_value;
70 bool operator!=(
const RunResult& _other)
72 return !(*
this == _other);
76 std::string m_message =
"";
77 uint32_t m_value = successCode;
78 bool m_fallBackToGenericErrorCode =
false;