namespace OpenTap;
///
/// Interface to load visa functions.
///
public interface IVisaFunctionLoader : ITapPlugin
{
///
/// The order in which IVisaProviders will be tested. Lower numbers go first
///
public double Order { get; }
/// Load all visa functions.
VisaFunctions? Functions { get; }
}