Files
rive-cpp/include/rive/status_code.hpp
csmartdalton 9c3168ef9d clang-format updates
- Put braces on their own line
- Turn off single-line case labels

Diffs=
32e79999a clang-format updates
2022-10-03 20:23:45 +00:00

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