##// END OF EJS Templates
updated genericBinaryFiles lib.
updated genericBinaryFiles lib.

File last commit:

r0:4960c62cb824 default
r12:cd9f2fa75783 default
Show More
main.cpp
11 lines | 172 B | text/x-c | CppLexer
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}