aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/contourpy/src/fill_type.h
blob: 20d41aeb3b2302f191ec73826cf893f4729b0410 (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
24
#ifndef CONTOURPY_FILL_TYPE_H
#define CONTOURPY_FILL_TYPE_H

#include <iosfwd>
#include <string>

namespace contourpy {

// C++11 scoped enum, must be fully qualified to use.
enum class FillType
{
    OuterCode = 201,
    OuterOffset = 202,
    ChunkCombinedCode = 203,
    ChunkCombinedOffset = 204,
    ChunkCombinedCodeOffset = 205,
    ChunkCombinedOffsetOffset = 206,
};

std::ostream &operator<<(std::ostream &os, const FillType& fill_type);

} // namespace contourpy

#endif // CONTOURPY_FILL_TYPE_H