mirror of
https://github.com/fralx/LimeReport.git
synced 2024-12-26 01:24:39 +03:00
5001738d76
Designer project has been added
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();
|
|
}
|