aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmlls/qlspcustomtypes_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qmlls/qlspcustomtypes_p.h')
-rw-r--r--src/qmlls/qlspcustomtypes_p.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/src/qmlls/qlspcustomtypes_p.h b/src/qmlls/qlspcustomtypes_p.h
new file mode 100644
index 0000000000..e299388b79
--- /dev/null
+++ b/src/qmlls/qlspcustomtypes_p.h
@@ -0,0 +1,56 @@
+// Copyright (C) 2022 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+#ifndef QLSPCUSTOMTYPES_P_H
+#define QLSPCUSTOMTYPES_P_H
+
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists purely as an
+// implementation detail. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
+#include <QtLanguageServer/private/qlanguageserverspec_p.h>
+
+QT_BEGIN_NAMESPACE
+
+namespace QLspSpecification {
+
+class UriToBuildDirs
+{
+public:
+ QByteArray baseUri = {};
+ QList<QByteArray> buildDirs = {};
+
+ template<typename W>
+ void walk(W &w)
+ {
+ field(w, "baseUri", baseUri);
+ field(w, "buildDirs", buildDirs);
+ }
+};
+
+namespace Notifications {
+constexpr auto AddBuildDirsMethod = "$/addBuildDirs";
+
+class AddBuildDirsParams
+{
+public:
+ QList<UriToBuildDirs> buildDirsToSet = {};
+
+ template<typename W>
+ void walk(W &w)
+ {
+ field(w, "buildDirsToSet", buildDirsToSet);
+ }
+};
+} // namespace Notifications
+} // namespace QLspSpecification
+
+QT_END_NAMESPACE
+
+#endif // QLSPCUSTOMTYPES_P_H