##// END OF EJS Templates
Documented the donut example
Documented the donut example

File last commit:

r1693:8b01a00ae1fe
r1713:428dd7229243
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();
}