更新项目结构

This commit is contained in:
metanoia1989
2020-11-13 22:57:37 +08:00
parent 8972425c7c
commit 66ef37c1ca
75 changed files with 465 additions and 43 deletions

View File

@@ -19,15 +19,15 @@ LISCENSE: MIT
namespace AeaQt {
#ifdef QT_APP_DEBUG
#define debugger qDebug().noquote().nospace() \
#define log_debugger qDebug().noquote().nospace() \
<< "[AeaQt::Network] Debug: -> " \
<< "function: " << __func__ << "; " \
<< "line: " << __LINE__ << "; "
#else
#define debug QString()
#define log_debugger QString()
#endif
#define warning qWarning().noquote().nospace() \
#define log_warning qWarning().noquote().nospace() \
<< "[AeaQt::Network] Warning: -> " \
<< "function: " << __func__ << "; " \
<< "line: " << __LINE__ << "; "