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/Extras/InfoBar/IInfoBarPresenterFactory.cs')
-rw-r--r--src/Editor/Text/Def/TextUICocoa/Extras/InfoBar/IInfoBarPresenterFactory.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Editor/Text/Def/TextUICocoa/Extras/InfoBar/IInfoBarPresenterFactory.cs b/src/Editor/Text/Def/TextUICocoa/Extras/InfoBar/IInfoBarPresenterFactory.cs
new file mode 100644
index 0000000..12df913
--- /dev/null
+++ b/src/Editor/Text/Def/TextUICocoa/Extras/InfoBar/IInfoBarPresenterFactory.cs
@@ -0,0 +1,10 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+namespace Microsoft.VisualStudio.Text.Editor
+{
+ public interface IInfoBarPresenterFactory
+ {
+ IInfoBarPresenter TryGetInfoBarPresenter(ITextView textView);
+ }
+} \ No newline at end of file