fill-or-stroke.h revision 934b717f7d24a9c9492e7d8b983c8817d1c8aad3
/** @file
* @brief Definition of the FillOrStroke enum.
*/
#ifndef SEEN_FILL_OR_STROKE_H
#define SEEN_FILL_OR_STROKE_H
/** \post STROKE == 0, FILL != 0. */
enum FillOrStroke { STROKE = 0, FILL = 1 };
#endif // !SEEN_FILL_OR_STROKE_H