Code

Use subdirectories with icon sizes.
[inkscape.git] / src / libnr / nr-path-code.h
1 #ifndef SEEN_LIBNR_NR_PATH_CODE_H
2 #define SEEN_LIBNR_NR_PATH_CODE_H
4 /** \file
5  * NRPathcode enum definition
6  */
8 typedef enum {
9     NR_MOVETO,        ///< Start of closed subpath
10     NR_MOVETO_OPEN,   ///< Start of open subpath
11     NR_CURVETO,       ///< Bezier curve segment
12     NR_LINETO,        ///< Line segment
13     NR_END            ///< End record
14 } NRPathcode;
17 #endif /* !SEEN_LIBNR_NR_PATH_CODE_H */
19 /*
20   Local Variables:
21   mode:c++
22   c-file-style:"stroustrup"
23   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
24   indent-tabs-mode:nil
25   fill-column:99
26   End:
27 */
28 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :