diff options
author | Christian Stenger <[email protected]> | 2019-08-19 10:55:32 +0200 |
---|---|---|
committer | Christian Stenger <[email protected]> | 2019-09-02 09:04:16 +0000 |
commit | 03b80025a94542e9f6dc09ace431f82cfabfabd6 (patch) | |
tree | 5b7ea7c1fc1471da4b6d3cb776390a2e2a09abc2 /src/plugins/autotest/testtreeitem.h | |
parent | df93c6c5a7bf476b0cf35ef5b8444c9fd5288d08 (diff) |
AutoTest: Shuffle namespaces for clearer separation
Change-Id: I6ac440c6d72c3d0dbcd75907f8a6ae756f3cf5ee
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/autotest/testtreeitem.h')
-rw-r--r-- | src/plugins/autotest/testtreeitem.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/plugins/autotest/testtreeitem.h b/src/plugins/autotest/testtreeitem.h index a311043558d..ad86dcb8425 100644 --- a/src/plugins/autotest/testtreeitem.h +++ b/src/plugins/autotest/testtreeitem.h @@ -45,10 +45,9 @@ namespace CppTools { class CppModelManager; } namespace Utils { class FilePath; } namespace Autotest { -namespace Internal { -class TestParseResult; class TestConfiguration; +class TestParseResult; enum class TestRunMode; class TestTreeItem : public Utils::TypedTreeItem<TestTreeItem> @@ -170,8 +169,7 @@ public: typedef QVector<TestCodeLocationAndType> TestCodeLocationList; -} // namespace Internal } // namespace Autotest -Q_DECLARE_METATYPE(Autotest::Internal::TestTreeItem *) -Q_DECLARE_METATYPE(Autotest::Internal::TestCodeLocationAndType) +Q_DECLARE_METATYPE(Autotest::TestTreeItem *) +Q_DECLARE_METATYPE(Autotest::TestCodeLocationAndType) |