SDRSharper/SDRSharper.Common/SDRSharp.Common/ISharpPlugin.cs

27 lines
266 B
C#
Raw Normal View History

using System.Windows.Forms;
namespace SDRSharp.Common
{
public interface ISharpPlugin
{
bool HasGui
{
get;
}
UserControl GuiControl
{
get;
}
string DisplayName
{
get;
}
void Initialize(ISharpControl control);
void Close();
}
}