bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
get_ascii.h
1
2// -*- mode: c++; c-basic-offset:4 -*-
3
4// Copyright (c) 2006 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 E_get_ascii_h
24#define E_get_ascii_h 1
25
26#include <libdap/DDS.h>
27
28namespace libdap {
29 class BaseType ;
30}
31
32namespace dap_asciival {
33
34 void get_data_values_as_ascii(libdap::DDS *dds, FILE *dest);
35 void get_data_values_as_ascii(libdap::DDS *dds, std::ostream &strm);
36
37 libdap::DDS *datadds_to_ascii_datadds(libdap::DDS *dds);
38
39 libdap::BaseType *basetype_to_asciitype(libdap::BaseType *bt);
40}
41
42#endif // E_get_ascii_h
43