0
0
mirror of https://github.com/fralx/LimeReport.git synced 2024-12-23 16:22:58 +03:00
LimeReport/demo_r2/main.cpp

14 lines
174 B
C++
Raw Normal View History

2016-04-02 03:39:45 +03:00
#include "mainwindow.h"
2016-04-02 03:39:45 +03:00
#include <QApplication>
int main(int argc, char* argv[])
2016-04-02 03:39:45 +03:00
{
QApplication a(argc, argv);
2017-10-05 02:47:45 +03:00
2016-04-02 03:39:45 +03:00
MainWindow w;
w.show();
return a.exec();
}