hdf5/examples
Quincey Koziol ed663577a5 [svn-r4473] Purpose:
Code cleanup for better compatibility with C++ compilers
Description:
    C++ compilers are choking on our C code, for various reasons:
        we used our UNUSED macro incorrectly when referring to pointer types
        we used various C++ keywords as variables, etc.
        we incremented enum's with the ++ operator.
Solution:
    Changed variables, etc.to avoid C++ keywords (new, class, typename, typeid,
        template)

    Fixed usage of UNUSED macro from this:
        char UNUSED *c
    to this:
        char * UNUSED c

    Switched the enums from x++ to x=x+1
Platforms tested:
    FreeBSD 4.4 (hawkwind)
2001-09-25 12:46:32 -05:00
..
Attributes.txt
Dependencies [svn-r4292] 2001-08-01 16:00:25 -05:00
h5_attribute.c [svn-r3959] 2001-06-05 13:00:37 -05:00
h5_chunk_read.c [svn-r3959] 2001-06-05 13:00:37 -05:00
h5_compound.c [svn-r3959] 2001-06-05 13:00:37 -05:00
h5_drivers.c [svn-r4449] Purpose: 2001-09-18 00:55:14 -05:00
h5_extend_write.c [svn-r3959] 2001-06-05 13:00:37 -05:00
h5_group.c [svn-r4473] Purpose: 2001-09-25 12:46:32 -05:00
h5_mount.c [svn-r3771] Purpose: 2001-04-03 13:33:07 -05:00
h5_read.c [svn-r4473] Purpose: 2001-09-25 12:46:32 -05:00
h5_reference.c [svn-r4012] Purpose: 2001-06-18 15:22:10 -05:00
h5_select.c [svn-r3959] 2001-06-05 13:00:37 -05:00
h5_write.c [svn-r3959] 2001-06-05 13:00:37 -05:00
Makefile.in [svn-r4466] 2001-09-21 18:50:15 -05:00
ph5example.c [svn-r3846] Description: 2001-04-24 15:34:57 -05:00
run_examples.sh [svn-r3367] 2001-02-06 11:30:08 -05:00