Code

e4195324f8df991d93e49ad7ccb4ed53c0271771
[inkscape.git] / fill-or-stroke.h
1 /** @file
2  * @brief Definition of the FillOrStroke enum.
3  */
5 #ifndef SEEN_FILL_OR_STROKE_H
6 #define SEEN_FILL_OR_STROKE_H
8 /** \post STROKE == 0, FILL != 0. */
9 enum FillOrStroke { STROKE = 0, FILL = 1 };
11 #endif /* !SEEN_FILL_OR_STROKE_H */