mirror of
https://github.com/rive-app/rive-cpp.git
synced 2026-01-18 21:21:17 +01:00
- Put braces on their own line - Turn off single-line case labels Diffs= 32e79999a clang-format updates
17 lines
230 B
C++
17 lines
230 B
C++
#ifndef _RIVE_STATUS_CODE_HPP_
|
|
#define _RIVE_STATUS_CODE_HPP_
|
|
|
|
#include "rive/rive_types.hpp"
|
|
|
|
namespace rive
|
|
{
|
|
enum class StatusCode : unsigned char
|
|
{
|
|
Ok,
|
|
MissingObject,
|
|
InvalidObject,
|
|
FailedInversion
|
|
};
|
|
}
|
|
#endif
|