using System; using System.Collections.Generic; using System.Text; using FastReport.Design; namespace FastReport.Wizards { /// /// Represents the "Blank Report" wizard. /// public class BlankReportWizard : WizardBase { /// public override bool Run(Designer designer) { designer.CreateEmptyReport(); return true; } } }