aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/contourpy/src/outer_or_hole.h
diff options
context:
space:
mode:
authorshumkovnd <shumkovnd@yandex-team.com>2023-11-10 14:39:34 +0300
committershumkovnd <shumkovnd@yandex-team.com>2023-11-10 16:42:24 +0300
commit77eb2d3fdcec5c978c64e025ced2764c57c00285 (patch)
treec51edb0748ca8d4a08d7c7323312c27ba1a8b79a /contrib/python/contourpy/src/outer_or_hole.h
parentdd6d20cadb65582270ac23f4b3b14ae189704b9d (diff)
downloadydb-77eb2d3fdcec5c978c64e025ced2764c57c00285.tar.gz
KIKIMR-19287: add task_stats_drawing script
Diffstat (limited to 'contrib/python/contourpy/src/outer_or_hole.h')
-rw-r--r--contrib/python/contourpy/src/outer_or_hole.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/contrib/python/contourpy/src/outer_or_hole.h b/contrib/python/contourpy/src/outer_or_hole.h
new file mode 100644
index 0000000000..0089a0bf75
--- /dev/null
+++ b/contrib/python/contourpy/src/outer_or_hole.h
@@ -0,0 +1,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