diff options
author | Nikolai Kosjar <nikolai.kosjar@digia.com> | 2013-12-19 01:30:49 +0100 |
---|---|---|
committer | Nikolai Kosjar <nikolai.kosjar@digia.com> | 2014-01-07 14:19:21 +0100 |
commit | c7f3ac407394d3c4d7fe817a6a913cd3256c37e5 (patch) | |
tree | a3006da3814715ed01ebd7abe0e5856ba00f26f9 /src/plugins/cpptools/cpppreprocessertesthelper.h | |
parent | 5c8df5fa4ec4a8f30261dc4d53a810f7be65df51 (diff) | |
download | qt-creator-c7f3ac407394d3c4d7fe817a6a913cd3256c37e5.tar.gz |
CppEditor/CppTools: Clean up *Test* classes
* Unify class names
* Fix coding style
Change-Id: I7498192ba9e6b9fc0e97d3d4f0dbb30f1853a0c9
Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com>
Diffstat (limited to 'src/plugins/cpptools/cpppreprocessertesthelper.h')
-rw-r--r-- | src/plugins/cpptools/cpppreprocessertesthelper.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/plugins/cpptools/cpppreprocessertesthelper.h b/src/plugins/cpptools/cpppreprocessertesthelper.h index c4eea5059e..0a571d65a0 100644 --- a/src/plugins/cpptools/cpppreprocessertesthelper.h +++ b/src/plugins/cpptools/cpppreprocessertesthelper.h @@ -34,20 +34,26 @@ #include "cpptools_global.h" #include <QtGlobal> +#include <QString> QT_FORWARD_DECLARE_CLASS(QString) namespace CppTools { +namespace Tests { class CPPTOOLS_EXPORT TestIncludePaths { + Q_DISABLE_COPY(TestIncludePaths) + public: static QString includeBaseDirectory(); static QString globalQtCoreIncludePath(); static QString globalIncludePath(); static QString directoryOfTestFile(); + static QString testFilePath(const QString &fileName = QLatin1String("file.cpp")); }; +} // namespace Tests } // namespace CppTools #endif // CPPPREPROCESSERTESTHELPER_H |