blob: c1e5dda702eeb1ad68410a571905f17564b53366 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef CONTOURPY_LINE_TYPE_H
#define CONTOURPY_LINE_TYPE_H
#include <iosfwd>
#include <string>
namespace contourpy {
// C++11 scoped enum, must be fully qualified to use.
enum class LineType
{
Separate = 101,
SeparateCode = 102,
ChunkCombinedCode = 103,
ChunkCombinedOffset = 104,
ChunkCombinedNan = 105,
};
std::ostream &operator<<(std::ostream &os, const LineType& line_type);
} // namespace contourpy
#endif // CONTOURPY_LINE_TYPE_H
|