File: hdf5.hpp

package info (click to toggle)
r-bioc-alabaster.base 1.6.1%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,652 kB
  • sloc: cpp: 11,377; sh: 29; makefile: 2
file content (37 lines) | stat: -rw-r--r-- 811 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef RITSUKO_HDF5_HPP
#define RITSUKO_HDF5_HPP

#include "Stream1dNumericDataset.hpp"
#include "Stream1dStringDataset.hpp"
#include "as_numeric_datatype.hpp"
#include "exceeds_limit.hpp"
#include "get_1d_length.hpp"
#include "get_dimensions.hpp"
#include "get_name.hpp"
#include "is_utf8_string.hpp"
#include "load_attribute.hpp"
#include "load_dataset.hpp"
#include "missing_placeholder.hpp"
#include "miscellaneous.hpp"
#include "open.hpp"
#include "pick_1d_block_size.hpp"
#include "pick_nd_block_dimensions.hpp"
#include "IterateNdDataset.hpp"
#include "validate_string.hpp"

/**
 * @file hdf5.hpp
 * @brief Umbrella header for **ritsuko**'s HDF5 utilities.
 */

namespace ritsuko {

/**
 * @namespace ritsuko::hdf5
 * @brief Assorted helper functions for HDF5 parsing. 
 */
namespace hdf5 {}

}

#endif