diff options
Diffstat (limited to 'src/uca-cam.h')
-rw-r--r-- | src/uca-cam.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/uca-cam.h b/src/uca-cam.h index 8b6fc0d..a194054 100644 --- a/src/uca-cam.h +++ b/src/uca-cam.h @@ -19,6 +19,15 @@ extern "C" { enum uca_property_ids; +/** + * Describes the current state of the camera. + */ +enum uca_cam_state { + UCA_CAM_CONFIGURABLE, /**< Camera can be configured and is not recording */ + UCA_CAM_ARMED, /**< Camera is ready for recording */ + UCA_CAM_RECORDING, /**< Camera is currently recording */ +}; + /* * --- non-virtual methods ---------------------------------------------------- */ |