aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/SideChains/Tango.AutoComplete/Editors/ISuggestionProvider.cs
blob: eca96a45628e041b1a3439821e957db6148bab7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace Tango.AutoComplete.Editors
{
    using System.Collections;

    public interface ISuggestionProvider
    {

        #region Public Methods

        IEnumerable GetSuggestions(string filter);

        #endregion Public Methods

    }
}