"using namespace" in a header file propagates the namespace to the files including the header file. So it should be avoided. This removes "using namespace" in header files in test. Signed-off-by: Hirokazu Honda <hiroh@chromium.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
27 lines
550 B
C++
27 lines
550 B
C++
/* 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 <memory>
|
|
|
|
#include <libcamera/camera.h>
|
|
#include <libcamera/camera_manager.h>
|
|
|
|
class CameraTest
|
|
{
|
|
public:
|
|
CameraTest(const char *name, bool isolate = false);
|
|
~CameraTest();
|
|
|
|
protected:
|
|
libcamera::CameraManager *cm_;
|
|
std::shared_ptr<libcamera::Camera> camera_;
|
|
int status_;
|
|
};
|
|
|
|
#endif /* __LIBCAMERA_CAMERA_TEST_H__ */
|