2012-01-29 23:36:03 +08:00
|
|
|
|
|
|
|
|
#include <QtCore/QCoreApplication>
|
2012-02-12 20:22:10 +08:00
|
|
|
#include "test.h"
|
2012-01-29 23:36:03 +08:00
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
|
{
|
|
|
|
|
QCoreApplication a(argc, argv);
|
|
|
|
|
|
2012-02-12 20:22:10 +08:00
|
|
|
Test test;
|
2012-01-29 23:36:03 +08:00
|
|
|
|
|
|
|
|
return a.exec();
|
|
|
|
|
}
|