blob: 43849b379b1f77e885d7073a5a60f5eb1307bafb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
* Definition of the FillOrStroke enum.
*//*
* Authors: see git history
*
* Copyright (C) 2010 Authors
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#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
|