cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
22 lines
492 B
C++
22 lines
492 B
C++
/*
|
|
This file is part of the KDE libraries
|
|
SPDX-FileCopyrightText: 2017 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
|
|
Work sponsored by the LiMux project of the city of Munich
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-only
|
|
*/
|
|
|
|
#ifndef KFILECUSTOMDIALOGTEST_H
|
|
#define KFILECUSTOMDIALOGTEST_H
|
|
|
|
#include <QObject>
|
|
|
|
class KFileCustomDialogTest : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private Q_SLOTS:
|
|
void shouldHaveDefaultValue();
|
|
};
|
|
|
|
#endif // KFILECUSTOMDIALOGTEST_H
|