File indexing completed on 2025-01-26 04:25:03
0001 // <one line to give the program's name and a brief idea of what it does.> 0002 // SPDX-FileCopyrightText: 2022 <copyright holder> <email> 0003 // SPDX-License-Identifier: GPL-3.0-or-later 0004 0005 #pragma once 0006 #include <QObject> 0007 /** 0008 * @todo write docs 0009 */ 0010 class ImageMetadata : public QObject 0011 { 0012 Q_OBJECT 0013 0014 public: 0015 explicit ImageMetadata(QObject *parent = nullptr); 0016 }; 0017