##// END OF EJS Templates
Adds templete to chartviewer to simplyfy chart type creation
Adds templete to chartviewer to simplyfy chart type creation

File last commit:

r1761:34fc5c0da098
r1839:16961447933b
Show More
main.cpp
11 lines | 168 B | text/x-c | CppLexer
Marek Rosa
Removed QDonutGroup class. Added Donut Drill down example
r1697 #include <QApplication>
#include "widget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}