From 77eb2d3fdcec5c978c64e025ced2764c57c00285 Mon Sep 17 00:00:00 2001
From: shumkovnd <shumkovnd@yandex-team.com>
Date: Fri, 10 Nov 2023 14:39:34 +0300
Subject: KIKIMR-19287: add task_stats_drawing script

---
 contrib/python/contourpy/src/z_interp.h | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 contrib/python/contourpy/src/z_interp.h

(limited to 'contrib/python/contourpy/src/z_interp.h')

diff --git a/contrib/python/contourpy/src/z_interp.h b/contrib/python/contourpy/src/z_interp.h
new file mode 100644
index 0000000000..76a7550be6
--- /dev/null
+++ b/contrib/python/contourpy/src/z_interp.h
@@ -0,0 +1,23 @@
+#ifndef CONTOURPY_Z_INTERP_H
+#define CONTOURPY_Z_INTERP_H
+
+#include <iosfwd>
+#include <string>
+
+namespace contourpy {
+
+// Enum for type of interpolation used to find intersection of contour lines
+// with grid cell edges.
+
+// C++11 scoped enum, must be fully qualified to use.
+enum class ZInterp
+{
+    Linear = 1,
+    Log = 2
+};
+
+std::ostream &operator<<(std::ostream &os, const ZInterp& z_interp);
+
+} // namespace contourpy
+
+#endif // CONTOURPY_ZINTERP_H
-- 
cgit v1.2.3