libdap
Updated for version 3.21.1
libdap4 is an implementation of OPeNDAP's DAP protocol.
Type.h
Go to the documentation of this file.
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
28
namespace
libdap
{
29
47
48
enum
Part
{
49
nil
,
// nil is for types that don't have parts...
50
array
,
51
maps
52
};
53
93
94
enum
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_ */
libdap
top level DAP object to house generic methods
Definition
AISConnect.cc:30
libdap::Type
Type
Identifies the data type.
Definition
Type.h:94
libdap::dods_group_c
@ dods_group_c
Definition
Type.h:122
libdap::dods_sequence_c
@ dods_sequence_c
Definition
Type.h:108
libdap::dods_uint32_c
@ dods_uint32_c
Definition
Type.h:100
libdap::dods_int16_c
@ dods_int16_c
Definition
Type.h:97
libdap::dods_byte_c
@ dods_byte_c
Definition
Type.h:96
libdap::dods_int32_c
@ dods_int32_c
Definition
Type.h:99
libdap::dods_url_c
@ dods_url_c
Definition
Type.h:104
libdap::dods_int8_c
@ dods_int8_c
Definition
Type.h:115
libdap::dods_float32_c
@ dods_float32_c
Definition
Type.h:101
libdap::dods_char_c
@ dods_char_c
Definition
Type.h:114
libdap::dods_int64_c
@ dods_int64_c
Definition
Type.h:118
libdap::dods_uint64_c
@ dods_uint64_c
Definition
Type.h:119
libdap::dods_uint16_c
@ dods_uint16_c
Definition
Type.h:98
libdap::dods_float64_c
@ dods_float64_c
Definition
Type.h:102
libdap::dods_null_c
@ dods_null_c
Definition
Type.h:95
libdap::dods_enum_c
@ dods_enum_c
Definition
Type.h:120
libdap::dods_grid_c
@ dods_grid_c
Definition
Type.h:111
libdap::dods_uint8_c
@ dods_uint8_c
Definition
Type.h:116
libdap::dods_str_c
@ dods_str_c
Definition
Type.h:103
libdap::dods_structure_c
@ dods_structure_c
Definition
Type.h:106
libdap::dods_array_c
@ dods_array_c
Definition
Type.h:107
libdap::dods_opaque_c
@ dods_opaque_c
Definition
Type.h:121
libdap::Part
Part
Names the parts of multi-section constructor data types.
Definition
Type.h:48
libdap::nil
@ nil
Definition
Type.h:49
libdap::maps
@ maps
Definition
Type.h:51
libdap::array
@ array
Definition
Type.h:50
Type.h
Generated by
1.13.2