Loading...
Searching...
No Matches
io.h
Go to the documentation of this file.
1// BSD 3-Clause License; see https://github.com/scikit-hep/awkward-1.0/blob/main/LICENSE
2
3#ifndef AWKWARDPY_IO_H_
4#define AWKWARDPY_IO_H_
5
6#include <pybind11/pybind11.h>
7
8namespace py = pybind11;
9
10void
11make_fromjson(py::module& m, const std::string& name);
12
13void
14make_fromjsonfile(py::module& m, const std::string& name);
15
16void
17make_fromjsonobj(py::module& m, const std::string& name);
18
19void
20make_fromjsonobj_schema(py::module& m, const std::string& name);
21
22void
23make_uproot_issue_90(py::module& m);
24
25#endif // AWKWARDPY_IO_H_
void make_uproot_issue_90(py::module &m)
void make_fromjsonobj(py::module &m, const std::string &name)
void make_fromjsonobj_schema(py::module &m, const std::string &name)
void make_fromjsonfile(py::module &m, const std::string &name)
void make_fromjson(py::module &m, const std::string &name)