mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-26 05:18:11 +03:00
11 lines
201 B
C++
11 lines
201 B
C++
|
#include <QApplication>
|
||
|
#include <LimeReport>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
QApplication a(argc, argv);
|
||
|
LimeReport::ReportEngine report;
|
||
|
report.designReport();
|
||
|
return a.exec();
|
||
|
}
|