diff options
Diffstat (limited to 'src/fill-or-stroke.h')
| -rw-r--r-- | src/fill-or-stroke.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/fill-or-stroke.h b/src/fill-or-stroke.h new file mode 100644 index 000000000..d0b174dca --- /dev/null +++ b/src/fill-or-stroke.h @@ -0,0 +1,9 @@ +#ifndef SEEN_FILL_OR_STROKE_H +#define SEEN_FILL_OR_STROKE_H + +/** \file Definition of the FillOrStroke enum. */ + +/** \post STROKE == 0, FILL != 0. */ +enum FillOrStroke { STROKE = 0, FILL = 1 }; + +#endif /* !SEEN_FILL_OR_STROKE_H */ |
