summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2019-01-05 12:58:20 +0200
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2019-01-08 16:23:16 +0200
commit8b0de29c416c81be2d98b73effe6c7315b1fc1e1 (patch)
tree8713f726e6ce9051c34920879e374c829dc36f6d /test
parentf3829b5745be5ee448394da28b24943a807321bb (diff)
libcamera: camera_manager: Make the class a singleton
There can only be a single camera manager instance in the application. Creating it as a singleton helps avoiding mistakes. It also allows the camera manager to be used as a storage of global data, such as the future event dispatcher. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Diffstat (limited to 'test')
-rw-r--r--test/list.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/test/list.cpp b/test/list.cpp
index 39b8a41d..e2026c99 100644
--- a/test/list.cpp
+++ b/test/list.cpp
@@ -19,10 +19,7 @@ class ListTest : public Test
protected:
int init()
{
- cm = new CameraManager();
- if (!cm)
- return -ENOMEM;
-
+ cm = CameraManager::instance();
cm->start();
return 0;
@@ -43,8 +40,6 @@ protected:
void cleanup()
{
cm->stop();
-
- delete cm;
}
private: