Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/Core/Interfaces/IUndoSupport.cs @ 4068

Last change on this file since 4068 was 4068, checked in by swagner, 14 years ago

Sorted usings and removed unused usings in entire solution (#1094)

File size: 708 bytes
Line 
1
2namespace Netron.Diagramming.Core {
3  /// <summary>
4  /// Interface that your application classes can implement
5  /// in order to perform the actual undo/redo functionality.
6  /// </summary>
7  public interface IUndoSupport {
8    /// <summary>
9    /// Undo of the last action
10    /// </summary>
11    /// <remarks>Calling this on a class level will call the Undo method of the last ICommand in the stack.</remarks>
12    void Undo();
13    /// <summary>
14    /// Performs the actual action or redo in case the actions was undoe before
15    /// </summary>
16    /// <remarks>Calling this on a class level will call the Redo method of the last ICommand in the stack.</remarks>
17    void Redo();
18  }
19}
Note: See TracBrowser for help on using the repository browser.