File indexing completed on 2024-05-12 05:39:45

0001 #ifndef TYPES_H
0002 #define TYPES_H
0003 
0004 #include "common_global.h"
0005 
0006 #include <QString>
0007 
0008 namespace common
0009 {
0010 struct COMMON_EXPORT Log
0011 {
0012     QString m_category;
0013     QString m_message;
0014     QString m_timestamp;
0015     QString m_level;
0016 };
0017 }
0018 
0019 #endif // TYPES_H