primera versi?n con servidor http incorporado

This commit is contained in:
Luis Ángel San Martín
2012-05-20 23:19:29 +02:00
parent 95817d14ee
commit 2598d6494a
60 changed files with 4751 additions and 3 deletions

View File

@ -1,7 +1,7 @@
#include "library_window.h"
#include <QApplication>
#include "startup.h"
#define PICTUREFLOW_QT4 1
int main( int argc, char ** argv )
@ -18,5 +18,8 @@ int main( int argc, char ** argv )
mw->resize(800,480);
mw->showMaximized();
Startup * s = new Startup();
s->start();
return app.exec();
}