ACloudViewer  3.9.4
A Modern Library for 3D Data Processing
blob.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 "core/Blob.h"
9 
11 #include "pybind/core/core.h"
12 #include "pybind/docstring.h"
13 
14 namespace cloudViewer {
15 namespace core {
16 
17 void pybind_core_blob(py::module &m) { py::class_<Blob> blob(m, "Blob"); }
18 
19 } // namespace core
20 } // namespace cloudViewer
void pybind_core_blob(py::module &m)
Definition: blob.cpp:17
Generic file read and write utility for python interface.