diff options
author | Marcus Tillmanns <[email protected]> | 2023-01-20 07:09:01 +0100 |
---|---|---|
committer | Marcus Tillmanns <[email protected]> | 2023-02-21 10:26:12 +0000 |
commit | 625f0ef7262192ef9618740c2eeeebc4beedc463 (patch) | |
tree | bc7744ac19a62ad8d644d894d585f45191af4ee1 /src/plugins/copilot/copilotsettings.h | |
parent | 31fa792b5bc66f295e301c46825fe7d4d4fc0709 (diff) |
Copilot: Add LSP plugin for Copilot
Fixes: QTCREATORBUG-27771
Change-Id: I1249b9a4492427208a70b3e21bf20ac668fc3c50
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/copilot/copilotsettings.h')
-rw-r--r-- | src/plugins/copilot/copilotsettings.h | 21 |
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 |