libdap Updated for version 3.21.0
libdap4 is an implementation of OPeNDAP's DAP protocol.
Type.h
1// -*- mode: c++; c-basic-offset:4 -*-
2
3// This file is part of libdap, A C++ implementation of the OPeNDAP Data
4// Access Protocol.
5
6// Copyright (c) 2013 OPeNDAP, Inc.
7// Author: James Gallagher <jgallagher@opendap.org>
8//
9// This library is free software; you can redistribute it and/or
10// modify it under the terms of the GNU Lesser General Public
11// License as published by the Free Software Foundation; either
12// version 2.1 of the License, or (at your option) any later version.
13//
14// This library is distributed in the hope that it will be useful,
15// but WITHOUT ANY WARRANTY; without even the implied warranty of
16// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17// Lesser General Public License for more details.
18//
19// You should have received a copy of the GNU Lesser General Public
20// License along with this library; if not, write to the Free Software
21// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22//
23// You can contact OPeNDAP, Inc. at PO Box 112, Saunderstown, RI. 02874-0112.
24
25#ifndef TYPE_H_
26#define TYPE_H_
27
28namespace libdap {
29
47
48enum Part {
49 nil, // nil is for types that don't have parts...
50 array,
51 maps
52};
53
93
94enum Type {
95 dods_null_c,
96 dods_byte_c,
97 dods_int16_c,
98 dods_uint16_c,
99 dods_int32_c, // Added `dods_' to fix clash with IRIX 5.3.
100 dods_uint32_c,
101 dods_float32_c,
102 dods_float64_c,
103 dods_str_c,
104 dods_url_c,
105
106 dods_structure_c,
107 dods_array_c,
108 dods_sequence_c,
109
110 // Not used for DAP4
111 dods_grid_c,
112
113 // Added for DAP4
114 dods_char_c, // a synonym for UInt8 (and Byte)
115 dods_int8_c,
116 dods_uint8_c,
117
118 dods_int64_c,
119 dods_uint64_c,
120 dods_enum_c,
121 dods_opaque_c,
122 dods_group_c
123};
124
125} // namespace libdap
126
127#endif /* TYPE_H_ */
top level DAP object to house generic methods
Definition AISConnect.cc:30
Type
Identifies the data type.
Definition Type.h:94
Part
Names the parts of multi-section constructor data types.
Definition Type.h:48