using System.Collections.Generic; namespace QFSW.QC { /// /// A suggestor that is loaded by the QuantumSuggestor to suggest IQcSuggestions /// public interface IQcSuggestor { /// /// Gets the suggestions for a given context. /// /// The context to provide suggestions for. /// Options used by the suggestor. /// The suggestions produced for the context. IEnumerable GetSuggestions(SuggestionContext context, SuggestorOptions options); } }