aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/logview/LogFile.h
diff options
context:
space:
mode:
authorGravatar Elvio Basello2011-04-21 20:55:11 +0000
committerGravatar Elvio Basello2011-04-21 20:55:11 +0000
commit06d84e592a226a7df83be55ad7150ff31d92d6bc (patch)
tree1874b002c3cf23596190d2a1d0e50f54f13e5e83 /src/modules/logview/LogFile.h
parentremoved useless pointer (diff)
downloadKVIrc-06d84e592a226a7df83be55ad7150ff31d92d6bc.tar.gz
KVIrc-06d84e592a226a7df83be55ad7150ff31d92d6bc.tar.bz2
KVIrc-06d84e592a226a7df83be55ad7150ff31d92d6bc.zip
more work on $log.export (wip)
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5797 17fca916-40b9-46aa-a4ea-0a15b648b75c
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
*