diff options
author | Nikolai Kosjar <nikolai.kosjar@theqtcompany.com> | 2015-02-05 16:32:18 +0100 |
---|---|---|
committer | Nikolai Kosjar <nikolai.kosjar@theqtcompany.com> | 2015-02-09 16:08:26 +0000 |
commit | 478914a9cecc70fb2c7fb6b4c5feb2010666d4f0 (patch) | |
tree | 76caad1daf649cc990894ee7121f4b829bd8571a /src/plugins/cpptools/cppprojectfile.h | |
parent | 77db03a94d7108ee7204e7dd7bd2c35391f27363 (diff) | |
download | qt-creator-478914a9cecc70fb2c7fb6b4c5feb2010666d4f0.tar.gz |
CppTools: Unexport ProjectFileAdder
Change-Id: Icf53019b594a5c45b06f7f1fab0f4bf36e891918
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/plugins/cpptools/cppprojectfile.h')
-rw-r--r-- | src/plugins/cpptools/cppprojectfile.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/plugins/cpptools/cppprojectfile.h b/src/plugins/cpptools/cppprojectfile.h index abbdbe4395..3fa3ec398c 100644 --- a/src/plugins/cpptools/cppprojectfile.h +++ b/src/plugins/cpptools/cppprojectfile.h @@ -68,7 +68,11 @@ public: Kind kind; }; -class CPPTOOLS_EXPORT ProjectFileAdder +QDebug operator<<(QDebug stream, const CppTools::ProjectFile &cxxFile); + +namespace Internal { + +class ProjectFileAdder { public: ProjectFileAdder(QList<ProjectFile> &files); @@ -86,8 +90,7 @@ private: QFileInfo m_fileInfo; }; -QDebug operator<<(QDebug stream, const CppTools::ProjectFile &cxxFile); - +} // namespace Internal } // namespace CppTools #endif // CPPTOOLS_CPPPROJECTFILE_H |