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

IDifferenceViewer2.cs « DifferenceViewer « TextUI « Def « Text « Editor « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3b9a4a8bb5b1b183c0eeab1b7f643e83eb91b73b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
//  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.Differencing
{
    using System;

    public interface IDifferenceViewer2 : IDifferenceViewer
    {
        /// <summary>
        /// Raised when the difference viewer is fully initialized.
        /// </summary>
        event EventHandler Initialized;
    }
}