blob: c6f5d75453e301ad995d8eaae0e8119e4d5c3209 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
SPDX-FileCopyrightText: 2019 Friedrich W. H. Kossebau <kossebau@kde.org>
SPDX-License-Identifier: MIT
*/
#include "test_fileextensions.hxx"
#include <QGuiApplication>
int main(int argc, char **argv)
{
QGuiApplication app(argc, argv);
Q_UNUSED(app);
TestFileExtensions *t = TestFileExtensions::self();
delete t;
return 0;
}
|