summaryrefslogtreecommitdiffstats
path: root/src/fill-or-stroke.h
blob: e4195324f8df991d93e49ad7ccb4ed53c0271771 (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 */