17 lines
303 B
C++
17 lines
303 B
C++
#include <QtGui/QApplication>
|
|
#include <QTimer>
|
|
|
|
#include "adcore.h"
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
adCore core;
|
|
QApplication a(argc, argv);
|
|
//QTimer * timer = new QTimer();
|
|
//QObject::connect(timer,SIGNAL(timeout()),&core,SLOT(next()));
|
|
//timer->start(100);
|
|
//return a.exec();
|
|
return 0;
|
|
}
|