12 #include <sys/types.h> 33 std::vector<std::shared_ptr<Camera>>
cameras()
const;
34 std::shared_ptr<Camera>
get(
const std::string &id);
36 static const std::string &
version() {
return version_; }
44 static const std::string version_;
Utilities to help constructing class interfaces.
Top-level libcamera namespace.
Definition: backtrace.h:17
~CameraManager()
Destroy the camera manager.
Definition: camera_manager.cpp:308
static const std::string & version()
Retrieve the libcamera version string.
Definition: camera_manager.h:36
Signal< std::shared_ptr< Camera > > cameraAdded
Notify of a new camera added to the system.
Definition: camera_manager.h:38
#define LIBCAMERA_DECLARE_PRIVATE()
Declare private data for a public class.
#define LIBCAMERA_DISABLE_COPY(klass)
Disable copy construction and assignment of the klass.
Signal & slot implementation.
std::vector< std::shared_ptr< Camera > > cameras() const
Retrieve all available cameras.
Definition: camera_manager.cpp:365
int start()
Start the camera manager.
Definition: camera_manager.cpp:325
Base class to manage private data through a d-pointer.
Definition: class.h:61
Provide access and manage all cameras in the system.
Definition: camera_manager.h:23
Base object to support automatic signal disconnection.
void stop()
Stop the camera manager.
Definition: camera_manager.cpp:347
Generic signal and slot communication mechanism.
Definition: object.h:20
Signal< std::shared_ptr< Camera > > cameraRemoved
Notify of a new camera removed from the system.
Definition: camera_manager.h:39
Base object to support automatic signal disconnection.
Definition: object.h:24