Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Editor/Text/Def/TextUICocoa/Snippet/IExpansionServiceProvider.cs')
-rw-r--r--src/Editor/Text/Def/TextUICocoa/Snippet/IExpansionServiceProvider.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Editor/Text/Def/TextUICocoa/Snippet/IExpansionServiceProvider.cs b/src/Editor/Text/Def/TextUICocoa/Snippet/IExpansionServiceProvider.cs
new file mode 100644
index 0000000..cead20d
--- /dev/null
+++ b/src/Editor/Text/Def/TextUICocoa/Snippet/IExpansionServiceProvider.cs
@@ -0,0 +1,12 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for license information.
+//
+
+namespace Microsoft.VisualStudio.Text.Editor.Expansion
+{
+ public interface IExpansionServiceProvider
+ {
+ IExpansionService GetExpansionService(ITextView textView);
+ }
+}