blob: a38dfc32d1ac42c484357c1c8225ec2e04700ea1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/** @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
|