RasterProcessTool/BaseCommonLibrary/BaseTool/PrintMsgToQDebug.cpp

8 lines
150 B
C++

#include "PrintMsgToQDebug.h"
#include <QDebug>
BASECONSTVARIABLEAPI void PrintMsgToQDebug(char* msg)
{
qDebug() << QString(msg);
return ;
}