##// END OF EJS Templates
Initial commit for gdpBarChart example.
Initial commit for gdpBarChart example.

File last commit:

r205:a2592bf5395a
r205:a2592bf5395a
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();
}