| Patrick Venture | 3ecb350 | 2019-05-17 11:03:51 -0700 | [diff] [blame^] | 1 | #pragma once |
| 2 | |||||
| 3 | #include <cstdint> | ||||
| 4 | |||||
| 5 | namespace blobs | ||||
| 6 | { | ||||
| 7 | |||||
| 8 | enum class VerifyCheckResponses : std::uint8_t | ||||
| 9 | { | ||||
| 10 | running = 0, | ||||
| 11 | success = 1, | ||||
| 12 | failed = 2, | ||||
| 13 | other = 3, | ||||
| 14 | }; | ||||
| 15 | } | ||||