File indexing completed on 2024-04-14 15:32:44

0001 /*
0002     SPDX-FileCopyrightText: 2009-2010 George Kiagiadakis <kiagiadakis.george@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 #ifndef BACKTRACEPARSERNULL_H
0007 #define BACKTRACEPARSERNULL_H
0008 
0009 #include "backtraceparser.h"
0010 
0011 class BacktraceParserNull : public BacktraceParser
0012 {
0013     Q_OBJECT
0014 public:
0015     explicit BacktraceParserNull(QObject *parent = nullptr);
0016 
0017 protected Q_SLOTS:
0018     void newLine(const QString &lineStr) override;
0019 
0020 protected:
0021     BacktraceParserPrivate *constructPrivate() const override;
0022 };
0023 
0024 #endif // BACKTRACEPARSERNULL_H