aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/headerpath.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2011-02-28 16:50:14 +0100
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2011-02-28 16:50:14 +0100
commit562265d58c981a5b2923306e8f38aec93167667f (patch)
treec1f23b788475aeb2fe706cc166f056cee343d0c2 /src/plugins/projectexplorer/headerpath.h
parente6d10c86ecdde7fd99377c37ff1dbf773c2aee91 (diff)
Toolchains: Header cleanup.
Diffstat (limited to 'src/plugins/projectexplorer/headerpath.h')
-rw-r--r--src/plugins/projectexplorer/headerpath.h68
1 files changed, 68 insertions, 0 deletions
diff --git a/src/plugins/projectexplorer/headerpath.h b/src/plugins/projectexplorer/headerpath.h
new file mode 100644
index 0000000000..44454ed9ec
--- /dev/null
+++ b/src/plugins/projectexplorer/headerpath.h
@@ -0,0 +1,68 @@
+/**************************************************************************
+**
+** This file is part of Qt Creator
+**
+** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
+**
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** No Commercial Usage
+**
+** This file contains pre-release code and may not be distributed.
+** You may use this file in accordance with the terms and conditions
+** contained in the Technology Preview License Agreement accompanying
+** this package.
+**
+** 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.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at qt-info@nokia.com.
+**
+**************************************************************************/
+
+#ifndef HEADERPATH_H
+#define HEADERPATH_H
+
+#include "projectexplorer_export.h"
+
+namespace ProjectExplorer {
+
+class PROJECTEXPLORER_EXPORT HeaderPath
+{
+public:
+ enum Kind {
+ GlobalHeaderPath,
+ UserHeaderPath,
+ FrameworkHeaderPath
+ };
+
+ HeaderPath()
+ : m_kind(GlobalHeaderPath)
+ { }
+
+ HeaderPath(const QString &path, Kind kind)
+ : m_path(path), m_kind(kind)
+ { }
+
+ QString path() const { return m_path; }
+ Kind kind() const { return m_kind; }
+
+private:
+ QString m_path;
+ Kind m_kind;
+};
+
+} // namespace ProjectExplorer
+
+#endif // HEADERPATH_H