ostinato/client/main.cpp
Srivats P. 70ca42fbb3 Enhancements
- Server now updates the "packet list" after every "apply" rather than before a "start transmit" (if dirty) - this better reflects user's expectation from these operations
- Client disables the entire application and changes to a "Busy" cursor when "applying" stream configuration

Fixes
- UDP checksum no longer is zero but a valid value
- Order of streams no longer gets messed up across a "apply"
2010-01-10 14:40:33 +00:00

18 lines
295 B
C++

#include "mainwindow.h"
#include <QApplication>
QMainWindow *mainWindow;
int main(int argc, char* argv[])
{
QApplication app(argc, argv);
int exitCode;
mainWindow = new MainWindow;
mainWindow->show();
exitCode = app.exec();
delete mainWindow;
return exitCode;
}