hdf5/c++/test
Binh-Minh Ribler 539f4691fa Added C++ wrappers - HDFFV-10149
Description:
    Added the following wrappers to class H5::Group:
    + H5Lcreate_soft:
        // Creates a soft link from link_name to target_name.
        void newLink(const char *target_name, const char *link_name,...)
        void newLink(const H5std_string& target_name,...)

    + H5Lcreate_hard:
        // Creates a hard link from new_name to curr_name.
        void newLink(const char *curr_name, const Group& new_loc,...)
        void newLink(const H5std_string& curr_name, const Group& new_loc,...)

        // Creates a hard link from new_name to curr_name in same location.
        void newLink(const char *curr_name, const hid_t same_loc,...)
        void newLink(const H5std_string& curr_name, const hid_t same_loc,...)

    + H5Lcopy:
        // Copy an object from a group of file to another.
        void copyLink(const char *src_name, const Group& dst,...)
        void copyLink(const H5std_string& src_name, const Group& dst,...)

        // Copy an object from a group of file to the same location.
        void copyLink(const char *src_name, const char *dst_name,...)
        void copyLink(const H5std_string& src_name,...)

    + H5Lmove:
        // Rename an object in a group or file to a new location.
        void moveLink(const char* src_name, const Group& dst,...)
        void moveLink(const H5std_string& src_name, const Group& dst,...)

        // Rename an object in a group or file to the same location.
        void moveLink(const char* src_name, const char* dst_name,...)
        void moveLink(const H5std_string& src_name,...)
Platforms tested:
    Linux/64 (jelly)
    Linux/ppc64 (ostrich)
    Darwin (osx1010test)
2018-03-09 21:29:28 -06:00
..
CMakeLists.txt Update cmake min version and cmake command convention 2017-01-10 17:10:03 -06:00
CMakeTests.cmake Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to hdf5_1_10 2017-04-25 16:05:36 -05:00
dsets.cpp Various code cleanup 2017-12-04 12:21:12 -06:00
h5cpputil.cpp Various code cleanup 2017-12-04 12:21:12 -06:00
h5cpputil.h Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to hdf5_1_10 2017-04-25 16:05:36 -05:00
H5srcdir_str.h.in Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to hdf5_1_10 2017-04-25 16:05:36 -05:00
Makefile.am Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to hdf5_1_10 2017-04-25 16:05:36 -05:00
tarray.cpp Various code cleanup 2017-12-04 12:21:12 -06:00
tattr.cpp Various code cleanup 2017-12-04 12:21:12 -06:00
tcompound.cpp Fixed typo. 2017-12-04 16:57:37 -06:00
tdspl.cpp Various code cleanup 2017-12-04 12:21:12 -06:00
testhdf5.cpp Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to hdf5_1_10 2017-04-25 16:05:36 -05:00
tfile.cpp Various code cleanup 2017-12-04 12:21:12 -06:00
tfilter.cpp Various code cleanup 2017-12-04 12:21:12 -06:00
th5s.cpp Various code cleanup 2017-12-04 12:21:12 -06:00
th5s.h5
titerate.cpp Various code cleanup 2017-12-04 12:21:12 -06:00
tlinks.cpp Added C++ wrappers - HDFFV-10149 2018-03-09 21:29:28 -06:00
tobject.cpp Various code cleanup 2017-12-04 12:21:12 -06:00
trefer.cpp Various code cleanup 2017-12-04 12:21:12 -06:00
ttypes.cpp Various code cleanup 2017-12-04 12:21:12 -06:00
tvlstr.cpp Various code cleanup 2017-12-04 12:21:12 -06:00