using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
namespace FastReport.Design
{
///
/// Represents list of registered design plugins.
///
public static class DesignerPlugins
{
internal static List Plugins = new List();
///
/// Adds a new plugin's type.
///
/// The type of a plugin.
public static void Add(Type plugin)
{
if (Plugins.IndexOf(plugin) == -1)
Plugins.Add(plugin);
}
}
}