[reflection] Coop handles icalls in System.Reflection and System.RuntimeTypeHandle...
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / IUndoEngineOperations.cs
1 //----------------------------------------------------------------
2 // Copyright (c) Microsoft Corporation.  All rights reserved.
3 //----------------------------------------------------------------
4
5 namespace System.Activities.Presentation
6 {
7     interface IUndoEngineOperations
8     {
9         void AddUndoUnitCore(UndoUnit unit);
10         bool UndoCore();
11         bool RedoCore();
12     }
13 }