Code

A simple layout document as to what, why and how is cppification.
[inkscape.git] / src / xml / repr-sorting.h
1 /** @file
2  * @brief Some functions relevant sorting reprs by position within document.
3  * @todo Functions in this file have non-English names. Determine what they do and rename
4  *       accordingly.
5  */
6  
7 #ifndef SEEN_XML_REPR_SORTING_H
8 #define SEEN_XML_REPR_SORTING_H
10 #include "xml/xml-forward.h"
12 Inkscape::XML::Node *LCA(Inkscape::XML::Node *a, Inkscape::XML::Node *b);
13 Inkscape::XML::Node *AncetreFils(Inkscape::XML::Node *descendent, Inkscape::XML::Node *ancestor);
15 #endif // SEEN_XML_REPR_SOTRING_H
16 /*
17   Local Variables:
18   mode:c++
19   c-file-style:"stroustrup"
20   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
21   indent-tabs-mode:nil
22   fill-column:99
23   End:
24 */
25 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :