summaryrefslogtreecommitdiff
path: root/examples/qt_with_qmake/main.cpp
blob: c7dd78255f4a3f012ef2c22e1acfbe355cf579a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <QCoreApplication>
#include <QTimer>

#include "exampleclass.h"

int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);

    ExampleClass ex;

    return a.exec();
}