aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/logview/LogFile.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/logview/LogFile.h')
-rw-r--r--src/modules/logview/LogFile.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/modules/logview/LogFile.h b/src/modules/logview/LogFile.h
index 6705ace26..cdf0b869a 100644
--- a/src/modules/logview/LogFile.h
+++ b/src/modules/logview/LogFile.h
@@ -27,7 +27,7 @@
/**
* \file LogFile.h
* \author Elvio Basello
-* \brief
+* \brief Describes a log file
*
* This file was originally part of LogViewWindow.h
*/
@@ -37,6 +37,17 @@
class QString;
/**
+* \typedef LogFileData
+* \struct _LogFileData
+* \brief A struct that contains the data of a log
+*/
+typedef struct LogFileData
+{
+ QString szName; /**< the name of the log */
+ QString szType; /**< the type of the log */
+} LogFileData;
+
+/**
* \class LogFile
* \brief The LogFile class which handle any log file
*