mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-07 19:33:24 +00:00
14 lines
215 B
C++
14 lines
215 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef TESTPICTURE_H
|
|
#define TESTPICTURE_H
|
|
|
|
#include <QtTest>
|
|
|
|
class TestPicture : public QObject {
|
|
Q_OBJECT
|
|
private slots:
|
|
void initTestCase();
|
|
void addPicture();
|
|
};
|
|
|
|
#endif
|