2025-02-19 02:06:45 +00:00
|
|
|
#include "PrintMsgToQDebug.h"
|
|
|
|
#include <QDebug>
|
|
|
|
BASECONSTVARIABLEAPI void PrintMsgToQDebug(char* msg)
|
|
|
|
{
|
|
|
|
qDebug() << QString(msg);
|
|
|
|
return ;
|
|
|
|
}
|
2025-02-19 04:29:15 +00:00
|
|
|
|
|
|
|
BASECONSTVARIABLEAPI void PrintTipMsgToQDebug(const char* tip, const char* msg)
|
|
|
|
{
|
|
|
|
qDebug() <<QString(tip)<<"\t:\t" << QString(msg);
|
|
|
|
return;
|
|
|
|
}
|