##// END OF EJS Templates
Adds donut and precent charts to chartviewer
Adds donut and precent charts to chartviewer

File last commit:

r1761:34fc5c0da098
r1865:27e7b2d61433
Show More
main.cpp
11 lines | 168 B | text/x-c | CppLexer
#include <QApplication>
#include "widget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}