/* * IExporter.cs * * Author(s) * Stephane Delcroix * * This is free software. See COPYING for details. * */ using Mono.Addins; using System; namespace FSpot.Extensions { public interface IExporter { void Run (IBrowsableCollection selection); } }