My favorites | Sign in
Project Logo
                
Search
for
Updated Dec 31, 2008 by simpledotnet
Labels: Phase-Implementation
PluginIPlugin  
IPlugin interface of SAE Plugin

SimpleAssemblyExplorer.Plugin.IPlugin

 using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;

namespace SimpleAssemblyExplorer.Plugin
{
    public interface IPlugin
    {     
        /// <summary>
        /// Plugin information
        /// </summary>
        PluginInfo PluginInfo { get; }

        /// <summary>
        /// Plugin interface
        /// </summary>
        /// <param name="arg">Plugin argument</param>
        /// <returns>to tell main form what to do after plugin returns</returns>
        PluginReturns Run(PluginArgument arg);
    }
}

Sign in to add a comment
Hosted by Google Code