mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2025-12-06 04:12:02 +01:00
27 lines
266 B
C#
27 lines
266 B
C#
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();
|
|
}
|
|
}
|