using System; using System.Collections.Generic; using System.Text; using HeuristicLab.PluginInfrastructure; namespace HeuristicLab.PluginInfrastructure { public interface IPluginLoader { /// /// Returns all activators found. /// IList Activators { get; } /// /// Returns all plugins found. /// IList Plugins { get; } /// /// Returns all Applications found. /// IList Applications { get; } } }