##// END OF EJS Templates
Added a pie chart customization example and refactoring the pie interface.
Added a pie chart customization example and refactoring the pie interface.

File last commit:

r205:a2592bf5395a
r437:8d9e377a1065
Show More
main.cpp
11 lines | 174 B | text/x-c | CppLexer
#include <QtGui/QApplication>
#include "widget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}