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.
36 lines
541 B
36 lines
541 B
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
namespace cmkr {
|
|
namespace error {
|
|
|
|
struct Status {
|
|
enum class Code {
|
|
Success = 0,
|
|
RuntimeError,
|
|
InitError,
|
|
GenerationError,
|
|
BuildError,
|
|
CleanError,
|
|
InstallError,
|
|
};
|
|
Status(Code ec) noexcept;
|
|
operator int() const noexcept;
|
|
Code code() const noexcept;
|
|
|
|
private:
|
|
Code ec_ = Code::Success;
|
|
};
|
|
|
|
} // namespace error
|
|
} // namespace cmkr
|
|
|
|
extern "C" {
|
|
#endif
|
|
|
|
const char *cmkr_error_status_string(int);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|