using FastReport.Import.StimulSoft;
namespace FastReport.Design.ImportPlugins.StimulSoft
{
///
/// Represents the StimulSoft import plugin.
///
public partial class StimulSoftImportPlugin : ImportPlugin
{
#region Constructors
///
/// Initializes a new instance of the class.
///
public StimulSoftImportPlugin() : base()
{
Import = new StimulSoftImport();
}
///
/// Initializes a new instance of the class with a specified designer.
///
/// The report designer.
public StimulSoftImportPlugin(Designer designer) : base(designer)
{
Import = new StimulSoftImport();
}
#endregion // Constructors
#region Protected Methods
///
protected override string GetFilter()
{
return new Utils.MyRes("FileFilters").Get("StimulSoftFile");
}
#endregion // Protected Methods
#region Public Methods
///
public override void LoadReport(Report report, string filename)
{
Import.LoadReport(report, filename);
}
#endregion // Public Methods
}
}