blob: 751c5915c8f1727e3bc837aa5623106e783f090c (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | /*
    SPDX-FileCopyrightText: 2005 Duncan Mac-Vicar P. <duncan@kde.org>
    SPDX-License-Identifier: MIT
*/
#include "test_dpointer.h"
#include <QGuiApplication>
int main(int argc, char **argv)
{
    QGuiApplication app(argc, argv);
    Q_UNUSED(app);
    TestDPointer *t = TestDPointer::self();
    delete t;
    return 0;
}
 |