using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using FastReport.Design;
using FastReport.Utils;
namespace FastReport.Wizards
{
///
/// The base class for all report wizards.
///
///
/// To create own wizard, use this class as a base. All you need is to override
/// the method. To register a wizard, use the
/// method.
///
public abstract class WizardBase
{
///
/// Runs the wizard.
///
/// Report designer.
/// true if wizard was executed succesfully.
///
/// This method is called when you select a wizard in the "Add New Item" window and
/// click "Add" button. You should do the work in this method.
///
public abstract bool Run(Designer designer);
}
}