Files @ d163d536640e
Branch filter:

Location: tempo-plotter/main.cpp

Hasan Yavuz ÖZDERYA
disabled keyboardTracking for numberOfSamples, this option causes plot data to be lost when you are increasing the number of samples
#include "mainwindow.h"
#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();

    return a.exec();
}