summaryrefslogtreecommitdiff
path: root/test/camera/camera_test.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/camera/camera_test.h')
-rw-r--r--test/camera/camera_test.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/test/camera/camera_test.h b/test/camera/camera_test.h
deleted file mode 100644
index e57b05eb..00000000
--- a/test/camera/camera_test.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-or-later */
-/*
- * Copyright (C) 2019, Google Inc.
- *
- * camera_test.h - libcamera camera test base class
- */
-#ifndef __LIBCAMERA_CAMERA_TEST_H__
-#define __LIBCAMERA_CAMERA_TEST_H__
-
-#include <libcamera/libcamera.h>
-
-#include "test.h"
-
-using namespace libcamera;
-
-class CameraTest : public Test
-{
-public:
- CameraTest()
- : cm_(nullptr) {}
-
-protected:
- int init();
- void cleanup();
-
- CameraManager *cm_;
- std::shared_ptr<Camera> camera_;
-};
-
-#endif /* __LIBCAMERA_CAMERA_TEST_H__ */