namespace PepperDash.Essentials.Devices.Common.Cameras
{
///
/// Defines the contract for IHasCameraZoomControl
///
public interface IHasCameraZoomControl : IHasCameraControls
{
///
/// Zooms the camera in
///
void ZoomIn();
///
/// Zooms the camera out
///
void ZoomOut();
///
/// Stops the camera zoom movement
///
void ZoomStop();
}
}