mirror of
http://172.16.0.230/r/SIF/TowerOptoSifAndSpectral.git
synced 2025-10-18 19:39:43 +08:00
20 lines
306 B
C++
20 lines
306 B
C++
#include<iostream>
|
|
#include<QString>
|
|
#include <QDebug>
|
|
#include "ATPControl_Serial_QT.h"
|
|
#include <QtCore/QCoreApplication>
|
|
using namespace std;
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QCoreApplication a(argc, argv);
|
|
|
|
QString qstrTest="This is a test message";
|
|
qDebug() << qstrTest;
|
|
|
|
return a.exec();
|
|
}
|
|
|
|
|
|
|