mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-25 21:14:39 +03:00
14 lines
291 B
C++
14 lines
291 B
C++
#include <QApplication>
|
|
#include <LimeReport>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
LimeReport::ReportEngine report;
|
|
if (a.arguments().count()>1){
|
|
report.loadFromFile(a.arguments().at(1));
|
|
}
|
|
report.designReport();
|
|
return a.exec();
|
|
}
|