Remove the verbose #ifndef/#define/#endif pattern for maintaining header idempotency, and replace it with a simple #pragma once. This simplifies the headers, and prevents redundant changes when header files get moved. Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jean-Michel Hautbois <jeanmichel.hautbois@ideasonboard.com>
33 lines
681 B
C++
33 lines
681 B
C++
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (C) 2019, Google Inc.
|
|
*
|
|
* viewfinder.h - qcam - Viewfinder base class
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <QImage>
|
|
#include <QList>
|
|
#include <QSize>
|
|
|
|
#include <libcamera/formats.h>
|
|
#include <libcamera/framebuffer.h>
|
|
|
|
class Image;
|
|
|
|
class ViewFinder
|
|
{
|
|
public:
|
|
virtual ~ViewFinder() = default;
|
|
|
|
virtual const QList<libcamera::PixelFormat> &nativeFormats() const = 0;
|
|
|
|
virtual int setFormat(const libcamera::PixelFormat &format, const QSize &size,
|
|
unsigned int stride) = 0;
|
|
virtual void render(libcamera::FrameBuffer *buffer, Image *image) = 0;
|
|
virtual void stop() = 0;
|
|
|
|
virtual QImage getCurrentImage() = 0;
|
|
};
|