xp-sp3: change grammer to support Qt5.6.3 for xp with sp3 system.
This commit is contained in:
18
Test/BaseTest.cpp
Normal file
18
Test/BaseTest.cpp
Normal file
@@ -0,0 +1,18 @@
|
||||
#include <QCoreApplication>
|
||||
#include <QDateTime>
|
||||
#include <QDebug>
|
||||
|
||||
void DateTimeTest()
|
||||
{
|
||||
qDebug() << QDateTime::currentDateTime().toMSecsSinceEpoch();
|
||||
}
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
QCoreApplication app(argc, argv);
|
||||
|
||||
qDebug() << "Running...";
|
||||
DateTimeTest();
|
||||
|
||||
return app.exec();
|
||||
}
|
||||
Reference in New Issue
Block a user