bes
Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
AsciiOutputFactory.h
1
2
// -*- mode: c++; c-basic-offset:4 -*-
3
4
// Copyright (c) 2005 OPeNDAP, Inc.
5
// Author: James Gallagher <jgallagher@opendap.org>
6
//
7
// This is free software; you can redistribute it and/or modify it under the
8
// terms of the GNU Lesser General Public License as published by the Free
9
// Software Foundation; either version 2.1 of the License, or (at your
10
// option) any later version.
11
//
12
// This is distributed in the hope that it will be useful, but WITHOUT ANY
13
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14
// FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
15
// more details.
16
//
17
// You should have received a copy of the GNU Lesser General Public
18
// License along with this library; if not, write to the Free Software
19
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20
//
21
// You can contact OPeNDAP, Inc. at PO Box 112, Saunderstown, RI. 02874-0112.
22
23
#ifndef ascii_output_factory_h
24
#define ascii_output_factory_h
25
26
#include <string>
27
28
#include <libdap/BaseTypeFactory.h>
29
30
class
AsciiByte
;
31
class
AsciiInt16
;
32
class
AsciiUInt16
;
33
class
AsciiInt32
;
34
class
AsciiUInt32
;
35
class
AsciiFloat32
;
36
class
AsciiFloat64
;
37
class
AsciiStr
;
38
class
AsciiUrl
;
39
class
AsciiArray
;
40
class
AsciiStructure
;
41
class
AsciiSequence
;
42
class
AsciiGrid
;
43
46
class
AsciiOutputFactory :
public
BaseTypeFactory
{
47
public
:
48
AsciiOutputFactory() {}
49
virtual
~AsciiOutputFactory() {}
50
51
virtual
Byte
*NewByte(
const
string
&n =
""
)
const
;
52
virtual
Int16
*NewInt16(
const
string
&n =
""
)
const
;
53
virtual
UInt16
*NewUInt16(
const
string
&n =
""
)
const
;
54
virtual
Int32
*NewInt32(
const
string
&n =
""
)
const
;
55
virtual
UInt32
*NewUInt32(
const
string
&n =
""
)
const
;
56
virtual
Float32
*NewFloat32(
const
string
&n =
""
)
const
;
57
virtual
Float64
*NewFloat64(
const
string
&n =
""
)
const
;
58
59
virtual
Str
*NewStr(
const
string
&n =
""
)
const
;
60
virtual
Url
*NewUrl(
const
string
&n =
""
)
const
;
61
62
virtual
Array *NewArray(
const
string
&n =
""
, BaseType *v = 0)
const
;
63
virtual
Structure *NewStructure(
const
string
&n =
""
)
const
;
64
virtual
Sequence
*NewSequence(
const
string
&n =
""
)
const
;
65
virtual
Grid *NewGrid(
const
string
&n =
""
)
const
;
66
};
67
68
#endif
// ascii_output_factory_h
AsciiArray
Definition
AsciiArray.h:44
AsciiByte
Definition
AsciiByte.h:44
AsciiFloat32
Definition
AsciiFloat32.h:42
AsciiFloat64
Definition
AsciiFloat64.h:42
AsciiGrid
Definition
AsciiGrid.h:42
AsciiInt16
Definition
AsciiInt16.h:42
AsciiInt32
Definition
AsciiInt32.h:42
AsciiSequence
Definition
AsciiSequence.h:43
AsciiStr
Definition
AsciiStr.h:42
AsciiStructure
Definition
AsciiStructure.h:42
AsciiUInt16
Definition
AsciiUInt16.h:42
AsciiUInt32
Definition
AsciiUInt32.h:42
AsciiUrl
Definition
AsciiUrl.h:42
BaseTypeFactory
Byte
Float32
Float64
Int16
Int32
Sequence
Str
UInt16
UInt32
Url
modules
asciival
AsciiOutputFactory.h
Generated by
1.13.2