#include "PrintMsgToQDebug.h" #include BASECONSTVARIABLEAPI void PrintMsgToQDebug(char* msg) { qDebug() << QString(msg); return ; } BASECONSTVARIABLEAPI void PrintfToQDebug(const char* msg) { qDebug() << QString(msg); return; } BASECONSTVARIABLEAPI void PrintTipMsgToQDebug(const char* tip, const char* msg) { qDebug() <