using System; namespace CPF.ReoGrid.Common { public interface IUndoableAction : IAction { void Undo(); void Redo(); } }