diff --git a/doc/c_cpp_api.rst b/doc/c_cpp_api.rst index da4f8fc61673079825426079481f066c78062e18..3a7b43944864cb520f6e13f91e9d309b81986059 100644 --- a/doc/c_cpp_api.rst +++ b/doc/c_cpp_api.rst @@ -133,16 +133,16 @@ Bob HDF5 Support .. cpp:type:: PyBobIoHDF5FileObject - The pythonic object representation for a ``bob::io::HDF5File`` object. + The pythonic object representation for a ``bob::io::base::HDF5File`` object. .. code-block:: cpp typedef struct { PyObject_HEAD - boost::shared_ptr<bob::io::HDF5File> f; + boost::shared_ptr<bob::io::base::HDF5File> f; } PyBobIoHDF5FileObject; - .. cpp:member:: boost::shared_ptr<bob::io::HDF5File> f + .. cpp:member:: boost::shared_ptr<bob::io::base::HDF5File> f A pointer to a Bob object being used to read/write data into an HDF5 file.