diff options
Diffstat (limited to 'ksystemlog/src/system/systemReader.h')
-rw-r--r-- | ksystemlog/src/system/systemReader.h | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/ksystemlog/src/system/systemReader.h b/ksystemlog/src/system/systemReader.h new file mode 100644 index 0000000..6449c25 --- /dev/null +++ b/ksystemlog/src/system/systemReader.h @@ -0,0 +1,53 @@ +/*************************************************************************** + * Copyright (C) 2005 by Nicolas Ternisien * + * [email protected] * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + ***************************************************************************/ +#ifndef _SYSTEM_READER_H_ +#define _SYSTEM_READER_H_ + +#include <qobject.h> +#include <qstringlist.h> +#include <kurl.h> +#include <qfile.h> + +#include "view.h" +#include "globals.h" + +#include "defaultReader.h" + + +/** + * @author Nicolas Ternisien + */ +class SystemReader : public DefaultReader { + Q_OBJECT + + public: + SystemReader(QObject *parent = 0, const char *name = 0); + + virtual ~SystemReader(); + + virtual void initColumns(LogViewColumns* columns); + + protected: + + virtual LogLine* parseMessage(QString& logLine, LogFile* logFile); + +}; + +#endif |