File: uzuki2.hpp

package info (click to toggle)
r-bioc-alabaster.base 1.6.1%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 1,652 kB
  • sloc: cpp: 11,377; sh: 29; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 314 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
#ifndef UZUKI2_UZUKI2_HPP
#define UZUKI2_UZUKI2_HPP

/**
 * @file uzuki2.hpp
 * @brief Umbrella header for the **uzuki2** library.
 */

/**
 * @namespace uzuki2
 * @brief Parse an R list from a HDF5 or JSON file.
 */

#if __has_include("H5Cpp.h")
#include "parse_hdf5.hpp"
#endif
#include "parse_json.hpp"

#endif