view Lang/ITranslatableWithActions.cs @ 33:70c46caee508

* Resolve conflicts between System.Action and Gtk.Action no-open-ticket
author IBBoard <dev@ibboard.co.uk>
date Sun, 13 Feb 2011 16:18:09 +0000
parents 06715f517af6
children
line wrap: on
line source

// This file (ITranslatableWithActions.cs) is a part of the IBBoard.GtkSharp project and is copyright 2010 IBBoard
//
// The file and the library/program it is in are licensed and distributed, without warranty, under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license.

using IBBoard.Lang;
using Gtk;
using System.Collections.Generic;

namespace IBBoard.GtkSharp
{
	public interface ITranslatableWithActions : ITranslatable
	{
		ICollection<Action> Actions { get; }
	}
}