ImagingTools Core SDK
CBitmapMetaInfo.h
1// SPDX-License-Identifier: LGPL-2.1-or-later OR GPL-2.0-or-later OR GPL-3.0-or-later OR LicenseRef-ImtCore-Commercial
2#pragma once
3
4
5// ACF includes
6#include <idoc/CStandardDocumentMetaInfo.h>
7
8// ImtCore includes
9#include <imtimg/IBitmapMetaInfo.h>
10
11
12namespace imtimg
13{
14
15
19class CBitmapMetaInfo: public idoc::CStandardDocumentMetaInfo, virtual public imtimg::IBitmapMetaInfo
20{
21public:
22 typedef idoc::CStandardDocumentMetaInfo BaseClass;
23
24 // reimplemented (idoc::IDocumentMetaInfo)
25 virtual QString GetMetaInfoName(int metaInfoType) const override;
26};
27
28
29} // namespace imtimg
30
31