18 lines
294 B
C++
18 lines
294 B
C++
#pragma once
|
|
#include <cstdint>
|
|
|
|
namespace vde::foundation {
|
|
|
|
enum class ErrorCode : int32_t {
|
|
kSuccess = 0,
|
|
kInvalidArgument,
|
|
kInvalidGeometry,
|
|
kDegenerateCase,
|
|
kNotImplemented,
|
|
kNumericalError,
|
|
kOutOfMemory,
|
|
kInternalError,
|
|
};
|
|
|
|
} // namespace vde::foundation
|