JustAudio/main.cpp
Maurice O'Neal 455723cede 1st commit for this project. current work in progress is to get the
basic skelton for all classes setup and then i will fill in all code
later, it's not compilable at this time.
2016-10-03 00:47:02 -04:00

15 lines
220 B
C++

#include <QApplication>
#include <QStringList>
#include "gui/ui.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
Ui win(app.arguments());
win.show();
return app.exec();
}