Code

initial implementation of XML::Subtree API for tracking changes on a
[inkscape.git] / src / console-output-undo-observer.h
index 6ab299894234ec3c96fe14c9ef4506557531102a..b6fec7f326b634f7ccca712b34f2afb775241043 100644 (file)
 
 namespace Inkscape {
 
-namespace XML {
-
-class Event;
-
-}
-
 class ConsoleOutputUndoObserver : public UndoStackObserver {
 public:
-       ConsoleOutputUndoObserver() : UndoStackObserver() { }
-       ~ConsoleOutputUndoObserver() { }
+    ConsoleOutputUndoObserver() : UndoStackObserver() { }
+    ~ConsoleOutputUndoObserver() { }
 
-       void notifyUndoEvent(XML::Event* log);
-       void notifyRedoEvent(XML::Event* log);
-       void notifyUndoCommitEvent(XML::Event* log);
+    void notifyUndoEvent(Event* log);
+    void notifyRedoEvent(Event* log);
+    void notifyUndoCommitEvent(Event* log);
+    void notifyClearUndoEvent();
+    void notifyClearRedoEvent();
 
 };
-
 }
 
 #endif