summaryrefslogtreecommitdiff
path: root/test/signal-threads.cpp
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2024-01-19 19:33:11 +0200
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2024-01-25 02:38:59 +0200
commitd5c9b726bd86c44eac17dfec461d02771c22e101 (patch)
tree3385d98de077272a8ae434d0744486051c49332c /test/signal-threads.cpp
parentfc4ded714dc0aafa0ad28d532c5f5f74b4cddd16 (diff)
libcamera: signal: Replace object.h inclusion with forward declatation
The signal.h header doesn't need to include object.h. Replace it with a forward declaration, and instead include object.h in source files that require it. It can speed up compilation a little bit, but more importantly avoids unintended dependencies from the Signal class to the Object class to be added later as the compiler will catch them. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Milan Zamazal <mzamazal@redhat.com>
Diffstat (limited to 'test/signal-threads.cpp')
-rw-r--r--test/signal-threads.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/signal-threads.cpp b/test/signal-threads.cpp
index d5e2eb66..8c550eb0 100644
--- a/test/signal-threads.cpp
+++ b/test/signal-threads.cpp
@@ -10,6 +10,7 @@
#include <thread>
#include <libcamera/base/message.h>
+#include <libcamera/base/object.h>
#include <libcamera/base/thread.h>
#include <libcamera/base/utils.h>