summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/gccparser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/projectexplorer/gccparser.h')
-rw-r--r--src/plugins/projectexplorer/gccparser.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/plugins/projectexplorer/gccparser.h b/src/plugins/projectexplorer/gccparser.h
index d65c4854b5..cf2de34b87 100644
--- a/src/plugins/projectexplorer/gccparser.h
+++ b/src/plugins/projectexplorer/gccparser.h
@@ -30,26 +30,24 @@
#ifndef GCCPARSER_H
#define GCCPARSER_H
-#include "ibuildparser.h"
+#include "ioutputparser.h"
#include <QtCore/QRegExp>
namespace ProjectExplorer {
-class GccParser : public ProjectExplorer::IBuildParser
+class GccParser : public ProjectExplorer::IOutputParser
{
Q_OBJECT
public:
GccParser();
- QString name() const;
- virtual void stdOutput(const QString & line);
- virtual void stdError(const QString & line);
+ virtual void stdError(const QString &line);
+
private:
QRegExp m_regExp;
QRegExp m_regExpIncluded;
QRegExp m_regExpLinker;
- QRegExp m_makeDir;
};
} // namespace ProjectExplorer