libdap Updated for version 3.20.11
libdap4 is an implementation of OPeNDAP's DAP protocol.
dods-datatypes.h
1/*
2 This header is used when the compile-time definitions won't work.
3*/
4
5#ifndef __DODS_DATATYPES__
6#define __DODS_DATATYPES__
7
8#include <inttypes.h>
9
10namespace libdap
11{
12
13typedef int32_t dods_int32;
14
15typedef uint32_t dods_uint32;
16
17typedef int16_t dods_int16;
18
19typedef uint16_t dods_uint16;
20
21typedef uint8_t dods_byte;
22
23typedef double dods_float64;
24
25typedef float dods_float32;
26
27// Added for DAP4
28typedef int8_t dods_int8;
29
30typedef int64_t dods_int64;
31
32typedef uint64_t dods_uint64;
33
34typedef int64_t dods_enum;
35
36} // namespace libdap
37
38#endif /* __DODS_DATATYPES__ */
top level DAP object to house generic methods
Definition: AlarmHandler.h:36