##// END OF EJS Templates
new files added for the waveform display features...
new files added for the waveform display features new files added for the statistics features

File last commit:

r14:304f5a6ad6b4 default
r20:eedc59c3c383 default
Show More
main.cpp
11 lines | 182 B | text/x-c | CppLexer
Add missing files to the repository
r14 #include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}