]> code.delx.au - virtualtones/blob - main.cpp
Updated the README a litte..
[virtualtones] / main.cpp
1 // main.cpp - MIDI keyboard program
2 // Written by James Bunton <james@delx.cjb.net>
3 // Licensed under the GPL, see COPYING.txt for more details
4
5 #include <qapplication.h>
6 #include "mainwin.h"
7
8 int main(int argc, char **argv)
9 {
10 QApplication a(argc, argv);
11 MainWin w;
12 a.setMainWidget(&w);
13 return a.exec();
14 }
15
16