You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
474 B
32 lines
474 B
4 years ago
|
#pragma once
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
namespace cmkr::error {
|
||
|
|
||
|
struct Status {
|
||
|
enum class Code {
|
||
|
Success = 0,
|
||
|
RuntimeError,
|
||
|
InitError,
|
||
|
GenerationError,
|
||
|
BuildError,
|
||
|
};
|
||
|
Status(Code ec) noexcept;
|
||
4 years ago
|
operator int() const noexcept;
|
||
|
Code code() const noexcept;
|
||
4 years ago
|
|
||
|
private:
|
||
4 years ago
|
Code ec_ = Code::Success;
|
||
4 years ago
|
};
|
||
|
|
||
|
} // namespace cmkr::error
|
||
|
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
4 years ago
|
const char *cmkr_error_status_string(int);
|
||
4 years ago
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|