8 lines
150 B
C++
8 lines
150 B
C++
|
#include "PrintMsgToQDebug.h"
|
||
|
#include <QDebug>
|
||
|
BASECONSTVARIABLEAPI void PrintMsgToQDebug(char* msg)
|
||
|
{
|
||
|
qDebug() << QString(msg);
|
||
|
return ;
|
||
|
}
|