VS2013 QT #include<QUdpSocket>

在qt编程时,要用到QUdpSocket类需要在.pro文件中加上
QT += network

在VS2013中直接在头文件中加入
#include <QUdpSocket>

此时有臭虫
在这里插入图片描述

原因是没有添加qt的Network模块,该模块中包含QUdpSocket类
在这里插入图片描述
在这里插入图片描述

#include "Log.h" #include <QFile> #include <QFileInfo> #include <QDir> #include <QTextStream> #include <QDateTime> int Module_QtWidgets_EXPORT s_logLevel = QtDebugMsg; QMutex Module_QtWidgets_EXPORT s_logMutex; QString Module_QtWidgets_EXPORT s_logPath; void Module_QtWidgets_EXPORT setLogPath(const QString& path) { s_logPath = path; } void Module_QtWidgets_EXPORT setLogLevel(int level) { s_logLevel = level; } bool static ensureDirExist(const QString& dirPath) { QDir dir(dirPath); if (dir.exists()) { return true; } return dir.mkpath(dirPath); } void Module_QtWidgets_EXPORT customLogMessageHandler(QtMsgType type, const QMessageLogContext& ctx, const QString& msg) { if (type < s_logLevel) { return; } QString logInfo; QString logTime = QDateTime::currentDateTime().toString("yyyy-MM-dd hh:mm:ss"); switch (type) { case QtDebugMsg: logInfo = QString("%1 [Debug] %2").arg(logTime, msg); break; case QtWarningMsg: logInfo = QString("%1 [Warning] %2").arg(logTime, msg); break; case QtCriticalMsg: logInfo = QString("%1 [Critical] %2").arg(logTime, msg); break; case QtFatalMsg: logInfo = QString("%1 [Fatal] %2").arg(logTime, msg); abort(); case QtInfoMsg: logInfo = QString("%1 [Info] %2").arg(logTime, msg); break; } s_logMutex.lock(); QFile outFile(s_logPath); QFileInfo fileInfo(outFile); if (!ensureDirExist(fileInfo.absoluteDir().absolutePath())) return; if (!outFile.open(QIODevice::WriteOnly | QIODevice::Append | QIODevice::Text)) return; QTextStream ts(&outFile); ts << logInfo.toUtf8() << endl; outFile.close(); s_logMutex.unlock(); }
06-07
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值