ACloudViewer  3.9.4
A Modern Library for 3D Data Processing
io.cpp
Go to the documentation of this file.
1 // ----------------------------------------------------------------------------
2 // - CloudViewer: www.cloudViewer.org -
3 // ----------------------------------------------------------------------------
4 // Copyright (c) 2018-2024 www.cloudViewer.org
5 // SPDX-License-Identifier: MIT
6 // ----------------------------------------------------------------------------
7 
8 #include "pybind/io/io.h"
9 
11 
12 namespace cloudViewer {
13 namespace io {
14 
15 void pybind_io(py::module &m) {
16  py::module m_io = m.def_submodule("io");
17  pybind_class_io(m_io);
18  pybind_rpc(m_io);
19 #ifdef BUILD_AZURE_KINECT
20  pybind_sensor(m_io);
21 #endif
22 }
23 
24 } // namespace io
25 } // namespace cloudViewer
void pybind_rpc(py::module &m)
Definition: rpc.cpp:27
void pybind_sensor(py::module &m)
Definition: sensor.cpp:20
void pybind_class_io(py::module &m_io)
Definition: class_io.cpp:88
void pybind_io(py::module &m)
Definition: io.cpp:15
Generic file read and write utility for python interface.