Adds new history element at top of history stack, and drops reverse stack Item to add
(IHistoryAction item)
| 107 | /// </summary> |
| 108 | /// <param name="item">Item to add</param> |
| 109 | public void Push(IHistoryAction item) |
| 110 | { |
| 111 | _historyActions.PushFront(item); |
| 112 | ClearReverse(); |
| 113 | } |
| 114 | |
| 115 | /// <summary> |
| 116 | /// Gets top-most item in history stack |
no test coverage detected