Code

fixed broken page unit changing in Document Properties
[inkscape.git] / src / xml / transaction-logger.h
1 /*
2  * Inkscape::XML::TransactionLogger - logs changes for transactions
3  *
4  * Copyright 2005 MenTaLguY <mental@rydia.net>
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  *
11  * See the file COPYING for details.
12  *
13  */
15 #ifndef SEEN_INKSCAPE_XML_TRANSACTION_LOGGER_H
16 #define SEEN_INKSCAPE_XML_TRANSACTION_LOGGER_H
18 #include "xml/node-observer.h"
20 namespace Inkscape {
21 namespace XML {
22 class Event;
23 }
24 }
27 namespace Inkscape {
29 namespace XML {
31 class Session;
33 class TransactionLogger : public NodeObserver {
34 public:
35     virtual Session &session()=0;
36 };
38 }
40 }
42 #endif
43 /*
44   Local Variables:
45   mode:c++
46   c-file-style:"stroustrup"
47   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
48   indent-tabs-mode:nil
49   fill-column:99
50   End:
51 */
52 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :