aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cpptools/cppprojectfilecategorizer.h
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2019-08-28 18:22:45 +0200
committerEike Ziller <eike.ziller@qt.io>2019-09-11 06:22:12 +0000
commit9cc45fe1fb6a953c9cbe1fe96683de5dd305d457 (patch)
tree9fbfe86b84d2038a6c03c258f2af5239d772687b /src/plugins/cpptools/cppprojectfilecategorizer.h
parentf52c4f450dcce22dc68b9e8d9adede94cad12e59 (diff)
CppTools: Move RawProjectPart to ProjectExplorer
Doesn't have any dependencies into CppTools anymore, therefore moving it reduces the dependencies of the project managers to CppTools as well. Change-Id: Ibe728abe59eb88a8877943dca1f48a85163e27ac Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/cpptools/cppprojectfilecategorizer.h')
-rw-r--r--src/plugins/cpptools/cppprojectfilecategorizer.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/plugins/cpptools/cppprojectfilecategorizer.h b/src/plugins/cpptools/cppprojectfilecategorizer.h
index 10b1ca7c7d5..bd82ee2ca0f 100644
--- a/src/plugins/cpptools/cppprojectfilecategorizer.h
+++ b/src/plugins/cpptools/cppprojectfilecategorizer.h
@@ -26,7 +26,8 @@
#pragma once
#include "cppprojectfile.h"
-#include "cpprawprojectpart.h"
+
+#include <projectexplorer/rawprojectpart.h>
#include <QString>
#include <QVector>
@@ -36,8 +37,8 @@ namespace CppTools {
class ProjectFileCategorizer
{
public:
- using FileIsActive = RawProjectPart::FileIsActive;
- using GetMimeType = RawProjectPart::GetMimeType;
+ using FileIsActive = ProjectExplorer::RawProjectPart::FileIsActive;
+ using GetMimeType = ProjectExplorer::RawProjectPart::GetMimeType;
public:
ProjectFileCategorizer(const QString &projectPartName,