Code

now that selection description includes style (filtered, clipped), we need to update...
[inkscape.git] / src / console-output-undo-observer.h
index 6ab299894234ec3c96fe14c9ef4506557531102a..9b42cf033df133a8a9c587440cb849eb524da3e8 100644 (file)
 
 namespace Inkscape {
 
-namespace XML {
-
-class Event;
-
-}
-
 class ConsoleOutputUndoObserver : public UndoStackObserver {
 public:
-       ConsoleOutputUndoObserver() : UndoStackObserver() { }
-       ~ConsoleOutputUndoObserver() { }
+    ConsoleOutputUndoObserver() : UndoStackObserver() { }
+    virtual ~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