aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/copilot/copilotsettings.h
diff options
context:
space:
mode:
authorMarcus Tillmanns <[email protected]>2023-01-20 07:09:01 +0100
committerMarcus Tillmanns <[email protected]>2023-02-21 10:26:12 +0000
commit625f0ef7262192ef9618740c2eeeebc4beedc463 (patch)
treebc7744ac19a62ad8d644d894d585f45191af4ee1 /src/plugins/copilot/copilotsettings.h
parent31fa792b5bc66f295e301c46825fe7d4d4fc0709 (diff)
Copilot: Add LSP plugin for Copilot
Diffstat (limited to 'src/plugins/copilot/copilotsettings.h')
-rw-r--r--src/plugins/copilot/copilotsettings.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/plugins/copilot/copilotsettings.h b/src/plugins/copilot/copilotsettings.h
new file mode 100644
index 00000000000..d089410216b
--- /dev/null
+++ b/src/plugins/copilot/copilotsettings.h
@@ -0,0 +1,21 @@
+// Copyright (C) 2023 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
+
+#pragma once
+
+#include <utils/aspects.h>
+
+namespace Copilot {
+
+class CopilotSettings : public Utils::AspectContainer
+{
+public:
+ CopilotSettings();
+
+ static CopilotSettings &instance();
+
+ Utils::StringAspect nodeJsPath;
+ Utils::StringAspect distPath;
+};
+
+} // namespace Copilot