summaryrefslogtreecommitdiff
path: root/test/init.cpp
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2018-12-19 11:45:45 +0200
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2019-01-02 03:28:19 +0200
commit7e9e508093bfa22635155352e73a31efdf457419 (patch)
tree26caacb034107cef9ffda8e5cdb656d227bd52cb /test/init.cpp
parenta591cc86555445a3cb3c11cb6e9a0489ea43d894 (diff)
libcamera: Remove libcamera class
The class was just a placeholder, now that we have other objects defined, remove it along with the associated test. The libcamera/libcamera.h header is kept as a shortcut to include the whole libcamera public API. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'test/init.cpp')
-rw-r--r--test/init.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/init.cpp b/test/init.cpp
deleted file mode 100644
index 4ade4e76..00000000
--- a/test/init.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-or-later */
-/*
- * Copyright (C) 2018, Google Inc.
- *
- * init.cpp - libcamera initialization test
- */
-
-#include <libcamera/libcamera.h>
-
-int main(void)
-{
- libcamera::libcamera l = libcamera::libcamera();
- l.init_lib();
-
- return 0;
-}