[go: up one dir, main page]

Menu

[r9]: / main.cpp  Maximize  Restore  History

Download this file

17 lines (15 with data), 273 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
/*
* Main
* revision : $Revision$
* date: $Date$
*/
#include <QtGui/QApplication>
#include "CChoreo.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
CChoreo w;
w.show();
a.setWindowIcon(QIcon(":/icons/icon64"));
return a.exec();
}