13115e84创建于 2023年11月13日历史提交
#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