summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4ec5251)
raw | patch | inline | side by side (parent: 4ec5251)
author | dwyip <dwyip@users.sourceforge.net> | |
Thu, 29 Jun 2006 21:17:13 +0000 (21:17 +0000) | ||
committer | dwyip <dwyip@users.sourceforge.net> | |
Thu, 29 Jun 2006 21:17:13 +0000 (21:17 +0000) |
src/undo-stack-observer.h | patch | blob | history |
index cd17c467575ca2415c89d0fb8d5db2b78658c3fc..f88c63e6254ffd0dffa324dfbec80d57f28bfb79 100644 (file)
namespace Inkscape {
+namespace XML {
+
class Event;
+}
+
/**
* Observes changes made to the undo and redo stacks.
*
*
* \param log Pointer to an Event describing the undone event.
*/
- virtual void notifyUndoEvent(Event* log) = 0;
+ virtual void notifyUndoEvent(XML::Event* log) = 0;
/**
* Triggered when the user issues a redo command.
*
* \param log Pointer to an Event describing the redone event.
*/
- virtual void notifyRedoEvent(Event* log) = 0;
+ virtual void notifyRedoEvent(XML::Event* log) = 0;
/**
* Triggered when a set of transactions is committed to the undo log.
*
* \param log Pointer to an Event describing the committed events.
*/
- virtual void notifyUndoCommitEvent(Event* log) = 0;
+ virtual void notifyUndoCommitEvent(XML::Event* log) = 0;
};
}