##// END OF EJS Templates
Cleaned path to use as hg submodule of lppmon_sdk or any other project.
Cleaned path to use as hg submodule of lppmon_sdk or any other project.

File last commit:

r5:4e6b18a64911 default
r5:4e6b18a64911 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();
}