| 28 | #include "image_reader.h" |
| 29 | |
| 30 | enum class CaptureSessionState : int32_t { |
| 31 | READY = 0, // session is ready |
| 32 | ACTIVE, // session is busy |
| 33 | CLOSED, // session is closed(by itself or a new session evicts) |
| 34 | MAX_STATE |
| 35 | }; |
| 36 | |
| 37 | template <typename T> |
| 38 | class RangeValue { |
nothing calls this directly
no outgoing calls
no test coverage detected