//
//
//
//
// $Revision$
//
namespace ICSharpCode.TextEditor.Undo
{
///
/// This Interface describes a the basic Undo/Redo operation
/// all Undo Operations must implement this interface.
///
public interface IUndoableOperation
{
///
/// Undo the last operation
///
void Undo();
///
/// Redo the last operation
///
void Redo();
}
}