using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Windows.Forms;
using System.Drawing;
using System.ComponentModel;
using FastReport.Forms;
using FastReport.Utils;
namespace FastReport.Design
{
///
/// Provides functionality required for report designer form.
///
public interface IDesignerForm
{
///
/// Gets the designer control.
///
Designer Designer { get; }
}
}