h5geo 0.4.0
C++17 and python API to work with geo-data (seismic, wells, maps, other in process) based on HDF5. Aimed at geoscientists and developers.
Loading...
Searching...
No Matches
h5point_py.h
1#ifndef H5POINT_PY_H
2#define H5POINT_PY_H
3
4#include "h5geo_py.h"
5
6#include <h5geo/private/h5point.h>
7
8namespace h5geopy {
9
10void Point1_py(
11 py::class_<Point1>
12 &py_obj);
13
14void Point2_py(
15 py::class_<Point2>
16 &py_obj);
17
18void Point3_py(
19 py::class_<Point3>
20 &py_obj);
21
22void Point4_py(
23 py::class_<Point4>
24 &py_obj);
25
26} // h5geopy
27
28#endif // H5POINT_PY_H