#ifndef SEEN_LIBNR_NR_PATH_CODE_H #define SEEN_LIBNR_NR_PATH_CODE_H /** \file * NRPathcode enum definition */ 00008 typedef enum { 00009 NR_MOVETO, ///< Start of closed subpath 00010 NR_MOVETO_OPEN, ///< Start of open subpath 00011 NR_CURVETO, ///< Bezier curve segment 00012 NR_LINETO, ///< Line segment 00013 NR_END ///< End record } NRPathcode; #endif /* !SEEN_LIBNR_NR_PATH_CODE_H */ /* Local Variables: mode:c++ c-file-style:"stroustrup" c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) indent-tabs-mode:nil fill-column:99 End: */ // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :