0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-10-09 05:57:14 +03:00

Designer project has been added

Designer project has been added
This commit is contained in:
Arin Alexander
2016-07-21 12:46:05 +03:00
parent 942dc47b8f
commit 5001738d76
5 changed files with 61 additions and 1 deletions

10
designer/main.cpp Normal file
View File

@@ -0,0 +1,10 @@
#include <QApplication>
#include <LimeReport>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
LimeReport::ReportEngine report;
report.designReport();
return a.exec();
}