summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/LspCpp/LibLsp/lsp/extention/sct/SCTConfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/utils/asymptote/LspCpp/LibLsp/lsp/extention/sct/SCTConfig.h')
-rw-r--r--Build/source/utils/asymptote/LspCpp/LibLsp/lsp/extention/sct/SCTConfig.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/Build/source/utils/asymptote/LspCpp/LibLsp/lsp/extention/sct/SCTConfig.h b/Build/source/utils/asymptote/LspCpp/LibLsp/lsp/extention/sct/SCTConfig.h
deleted file mode 100644
index 7b41118c0ab..00000000000
--- a/Build/source/utils/asymptote/LspCpp/LibLsp/lsp/extention/sct/SCTConfig.h
+++ /dev/null
@@ -1,37 +0,0 @@
-#pragma once
-#include <string>
-#include <vector>
-#include <LibLsp/JsonRpc/serializer.h>
-using namespace std;
-
-
-struct TCP_option
-{
- std::string host = "127.0.0.1";
- int port = 8889;
-
-};
-MAKE_REFLECT_STRUCT(TCP_option,host,port)
-
-
-struct SCTConfig
-{
- static SCTConfig* newInstance(const string& file_path,string& error);
- std::string version;
- std::string file_name;
-
- boost::optional<bool> start_by_jcide;
-
- boost::optional<TCP_option> tcp;
- boost::optional<vector<string>> args;
-
- // internal using
- bool broken = false;
- std::string error;
-};
-
-
-MAKE_REFLECT_STRUCT(SCTConfig, version,file_name, tcp, args, start_by_jcide);
-
-
-