pascalabcnet/ICSharpCode.TextEditor/Src/Undo/IUndoableOperation.cs
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

27 lines
624 B
C#

// <file>
// <copyright see="prj:///doc/copyright.txt"/>
// <license see="prj:///doc/license.txt"/>
// <owner name="Mike Krüger" email="mike@icsharpcode.net"/>
// <version>$Revision: 915 $</version>
// </file>
namespace ICSharpCode.TextEditor.Undo
{
/// <summary>
/// This Interface describes a the basic Undo/Redo operation
/// all Undo Operations must implement this interface.
/// </summary>
public interface IUndoableOperation
{
/// <summary>
/// Undo the last operation
/// </summary>
void Undo();
/// <summary>
/// Redo the last operation
/// </summary>
void Redo();
}
}