diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2019-05-24 00:56:27 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2019-05-24 09:22:08 (GMT) |
commit | d5a8b2a80cd1e5aaa62a523e03a5936260a56f60 (patch) | |
tree | 7b3076c1cf79633dc0d67cc37b4aa5994ebb0c2b /test | |
parent | e1879a23ae414e5256bcc0170f40784cd698af89 (diff) | |
download | hdf5-d5a8b2a80cd1e5aaa62a523e03a5936260a56f60.zip hdf5-d5a8b2a80cd1e5aaa62a523e03a5936260a56f60.tar.gz hdf5-d5a8b2a80cd1e5aaa62a523e03a5936260a56f60.tar.bz2 |
Split VOL connector routines into separate headers:
* H5VLconnector.h for terminal connector things
* H5VLconnector_passthru.h for passthrough connector things
Note that these headers are arranged such that they are included in
hdf5.h so VOL connectors only need to include that. The separation into
multiple headers is mainly for readability.
Diffstat (limited to 'test')
-rw-r--r-- | test/null_vol_connector.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/null_vol_connector.c b/test/null_vol_connector.c index b78e859..5ed8545 100644 --- a/test/null_vol_connector.c +++ b/test/null_vol_connector.c @@ -15,8 +15,15 @@ * (registration, etc.). */ + +/* Public HDF5 header */ +#include "hdf5.h" + +/* For HDF5 plugin functionality */ #include "H5PLextern.h" + +/* This connector's header */ #include "null_vol_connector.h" /* The VOL class struct */ |