~ubuntu-branches/ubuntu/natty/kdebase-runtime/natty-proposed

« back to all changes in this revision

Viewing changes to drkonqi/parser/backtraceparsernull.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-11-24 11:07:10 UTC
  • mto: (0.8.7 upstream)
  • mto: This revision was merged to the branch mainline in revision 129.
  • Revision ID: james.westby@ubuntu.com-20101124110710-6dbsyw0yh21qvn82
Tags: upstream-4.5.80
ImportĀ upstreamĀ versionĀ 4.5.80

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    Copyright (C) 2009-2010 George Kiagiadakis <kiagiadakis.george@gmail.com>
 
3
 
 
4
    This program is free software; you can redistribute it and/or modify
 
5
    it under the terms of the GNU General Public License as published by
 
6
    the Free Software Foundation; either version 2 of the License, or
 
7
    (at your option) any later version.
 
8
 
 
9
    This program is distributed in the hope that it will be useful,
 
10
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
    GNU General Public License for more details.
 
13
 
 
14
    You should have received a copy of the GNU General Public License along
 
15
    with this program; if not, write to the Free Software Foundation, Inc.,
 
16
    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
17
*/
 
18
#ifndef BACKTRACEPARSERNULL_H
 
19
#define BACKTRACEPARSERNULL_H
 
20
 
 
21
#include "backtraceparser.h"
 
22
 
 
23
class BacktraceParserNull : public BacktraceParser
 
24
{
 
25
    Q_OBJECT
 
26
public:
 
27
    explicit BacktraceParserNull(QObject *parent = 0);
 
28
 
 
29
protected Q_SLOTS:
 
30
    virtual void newLine(const QString & lineStr);
 
31
 
 
32
protected:
 
33
    virtual BacktraceParserPrivate *constructPrivate() const;
 
34
};
 
35
 
 
36
#endif // BACKTRACEPARSERNULL_H