blob: 0089a0bf753fdd0120d0b30541f56cadc1daadd5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef CONTOURPY_OUTER_OR_HOLE_H
#define CONTOURPY_OUTER_OR_HOLE_H
#include <iosfwd>
namespace contourpy {
typedef enum
{
Outer,
Hole
} OuterOrHole;
std::ostream &operator<<(std::ostream &os, const OuterOrHole& outer_or_hole);
} // namespace contourpy
#endif // CONTOURPY_OUTER_OR_HOLE_H
|