[wrap-git] url = https://github.com/pybind/pybind11.git # This is the head of 'smart_holder' branch revision = aebdf00cd060b871c5a1e0c2cf4a333503dd0431 depth = 1 patch_directory = pybind11 [provide] pybind11 = pybind11_dep /libcamera/vivid.git/atom/test/libtest/camera_test.h?h=v0.0.4' type='application/atom+xml'/>
summaryrefslogtreecommitdiff
path: root/test/libtest/camera_test.h
blob: 0b6bad05e37c485116f2662b77f3858c3a1dbac3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* 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>

using namespace libcamera;

class CameraTest
{
public:
	CameraTest(const char *name);
	~CameraTest();

protected:
	CameraManager *cm_;
	std::shared_ptr<Camera> camera_;
	int status_;
};

#endif /* __LIBCAMERA_CAMERA_TEST_H__ */