X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fundo-stack-observer.h;h=5bf405f7f290f210d3695c2e1d0d155b2ac80ea4;hb=57eb32794c2df43d60ee8f0a9aa8576567358ce6;hp=dbda2b9809e04f867224b3efaa16c5fe6415af53;hpb=47231b67f16c39a979eadb64ac76cf44369a2b4d;p=inkscape.git diff --git a/src/undo-stack-observer.h b/src/undo-stack-observer.h index dbda2b980..5bf405f7f 100644 --- a/src/undo-stack-observer.h +++ b/src/undo-stack-observer.h @@ -59,6 +59,17 @@ public: * \param log Pointer to an Event describing the committed events. */ virtual void notifyUndoCommitEvent(Event* log) = 0; + + /** + * Triggered when the undo log is cleared. + */ + virtual void notifyClearUndoEvent() = 0; + + /** + * Triggered when the redo log is cleared. + */ + virtual void notifyClearRedoEvent() = 0; + }; }