##// END OF EJS Templates
Updated callout example
Updated callout example

File last commit:

r2346:1937d28dc870
r2346:1937d28dc870
Show More
main.cpp
11 lines | 164 B | text/x-c | CppLexer
#include <QApplication>
#include "view.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
View w;
w.show();
return a.exec();
}