##// END OF EJS Templates
timecode generation added to the rmapplugin:...
timecode generation added to the rmapplugin: RMAPPlugin0.sendOneTimecode() RMAPPlugin0.sendTimecodePeriodically()

File last commit:

r35:0ca1c62d8087 default
r62:8490a8b44e9a default
Show More
main.cpp
12 lines | 201 B | text/x-c | CppLexer
#include <QtGui/QApplication>
#include "mainwindow.h"
#include <QVBoxLayout>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}