ACF $AcfVersion:0$
IQImageProvider.h
Go to the documentation of this file.
1// SPDX-License-Identifier: LGPL-2.1-or-later OR GPL-2.0-or-later OR GPL-3.0-or-later OR LicenseRef-ACF-Commercial
2#pragma once
3
4
5// Qt includes
6#include <QtGui/QImage>
7
8// ACF includes
9#include <istd/IPolymorphic.h>
10#include <iimg/iimg.h>
11
12
13namespace iimg
14{
15
16
24{
25public:
26
30 virtual const QImage& GetQImage() const = 0;
31
37 virtual bool CopyImageFrom(const QImage& image) = 0;
38};
39
40
41} // namespace iimg
42
43
44
45
Interface for QImage object provider.
virtual const QImage & GetQImage() const =0
Gets a QImage object.
virtual bool CopyImageFrom(const QImage &image)=0
Copies the image data from a QImage object.
Base interface for all used interfaces and implementations.
Contains the system indenendent definitions of image and related themes.
Definition CBitmap.h:17