Code

moving trunk for module inkscape
[inkscape.git] / src / xml / simple-document.cpp
1 /*
2  * Inkscape::XML::SimpleDocument - generic XML document implementation
3  *
4  * Copyright 2004-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 #include "xml/simple-document.h"
16 #include "xml/simple-session.h"
18 namespace Inkscape {
20 namespace XML {
22 void SimpleDocument::_initBindings() {
23     _bindDocument(*this);
24     _bindLogger(*(new Inkscape::XML::SimpleSession()));
25 }
27 }
29 }
31 /*
32   Local Variables:
33   mode:c++
34   c-file-style:"stroustrup"
35   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
36   indent-tabs-mode:nil
37   fill-column:99
38   End:
39 */
40 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :