summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/buildparserinterface.h
diff options
context:
space:
mode:
authorTobias Hunger <qt-info@nokia.com>2009-11-11 15:25:14 +0100
committerTobias Hunger <qt-info@nokia.com>2009-11-12 09:04:17 +0100
commit074b111c66133ce137fd883e435f4429ebc4a09f (patch)
tree55ab3ed2588fb4d1a6d7982b33dbed724f29a823 /src/plugins/projectexplorer/buildparserinterface.h
parent7c003add4473e1d80be646c8fc819fc8822d3987 (diff)
downloadqt-creator-074b111c66133ce137fd883e435f4429ebc4a09f.tar.gz
Rename BuildParserInterface to IBuildParser.
Rename BuildParserInterface to IBuildParser to comply with latest naming conventions. Reviewed-By: con
Diffstat (limited to 'src/plugins/projectexplorer/buildparserinterface.h')
-rw-r--r--src/plugins/projectexplorer/buildparserinterface.h71
1 files changed, 0 insertions, 71 deletions
diff --git a/src/plugins/projectexplorer/buildparserinterface.h b/src/plugins/projectexplorer/buildparserinterface.h
deleted file mode 100644
index 7b1a55e6e2..0000000000
--- a/src/plugins/projectexplorer/buildparserinterface.h
+++ /dev/null
@@ -1,71 +0,0 @@
-/**************************************************************************
-**
-** This file is part of Qt Creator
-**
-** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
-**
-** Contact: Nokia Corporation (qt-info@nokia.com)
-**
-** Commercial Usage
-**
-** Licensees holding valid Qt Commercial licenses may use this file in
-** accordance with the Qt Commercial License Agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Nokia.
-**
-** GNU Lesser General Public License Usage
-**
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 2.1 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 2.1 requirements
-** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** If you are unsure which license is appropriate for your use, please
-** contact the sales department at http://qt.nokia.com/contact.
-**
-**************************************************************************/
-
-#ifndef BUILDPARSERINTERFACE_H
-#define BUILDPARSERINTERFACE_H
-
-#include "projectexplorer_export.h"
-
-#include <QtCore/QObject>
-#include <QtCore/QStack>
-
-namespace ProjectExplorer {
-
-class PROJECTEXPLORER_EXPORT BuildParserInterface : public QObject
-{
- Q_OBJECT
-public:
- virtual ~BuildParserInterface() {}
- virtual QString name() const = 0;
-
- virtual void stdOutput(const QString & line) = 0;
- virtual void stdError(const QString & line) = 0;
-
-Q_SIGNALS:
- void enterDirectory(const QString &dir);
- void leaveDirectory(const QString &dir);
- void addToOutputWindow(const QString & string);
- void addToTaskWindow(const QString & filename, int type, int lineNumber, const QString & description);
-};
-
-class PROJECTEXPLORER_EXPORT IBuildParserFactory
- : public QObject
-{
- Q_OBJECT
-
-public:
- IBuildParserFactory() {}
- virtual ~IBuildParserFactory();
- virtual bool canCreate(const QString & name) const = 0;
- virtual BuildParserInterface * create(const QString & name) const = 0;
-};
-
-} // namespace ProjectExplorer
-
-#endif // BUILDPARSERINTERFACE_H