aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/languageclient/callandtypehierarchy.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/languageclient/callandtypehierarchy.h')
-rw-r--r--src/plugins/languageclient/callandtypehierarchy.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/plugins/languageclient/callandtypehierarchy.h b/src/plugins/languageclient/callandtypehierarchy.h
new file mode 100644
index 00000000000..b49684d65a9
--- /dev/null
+++ b/src/plugins/languageclient/callandtypehierarchy.h
@@ -0,0 +1,18 @@
+// Copyright (C) 2024 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0
+
+#pragma once
+
+namespace Core { class IDocument; }
+
+namespace LanguageClient {
+
+class Client;
+
+void setupCallHierarchyFactory();
+bool supportsCallHierarchy(Client *client, const Core::IDocument *document);
+
+void setupTypeHierarchyFactory();
+bool supportsTypeHierarchy(Client *client, const Core::IDocument *document);
+
+} // namespace LanguageClient