You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
490 B
23 lines
490 B
/* |
|
SPDX-FileCopyrightText: 2015 Laurent Montel <montel@kde.org> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#ifndef EDITDRAWINGTOOLDIALOGTEST_H |
|
#define EDITDRAWINGTOOLDIALOGTEST_H |
|
|
|
#include <QObject> |
|
|
|
class EditDrawingToolDialogTest : public QObject |
|
{ |
|
Q_OBJECT |
|
public: |
|
explicit EditDrawingToolDialogTest(QObject *parent = nullptr); |
|
~EditDrawingToolDialogTest() override; |
|
|
|
private Q_SLOTS: |
|
void shouldHaveDefaultValues(); |
|
}; |
|
|
|
#endif // EDITDRAWINGTOOLDIALOGTEST_H
|
|
|