![]() |
|
|||
File indexing completed on 2025-04-19 08:55:34
0001 #pragma once 0002 0003 #include <H5Ipublic.h> 0004 #include <H5Tpublic.h> 0005 0006 namespace HighFive { 0007 namespace detail { 0008 0009 inline hid_t h5o_open(hid_t loc_id, const char* name, hid_t lapl_id) { 0010 hid_t hid = H5Oopen(loc_id, name, lapl_id); 0011 if (hid < 0) { 0012 HDF5ErrMapper::ToException<GroupException>(std::string("Unable to open \"") + name + "\":"); 0013 } 0014 0015 return hid; 0016 } 0017 0018 } // namespace detail 0019 } // namespace HighFive
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
![]() ![]() |