bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
get_ascii_dap4.h
1
2// -*- mode: c++; c-basic-offset:4 -*-
3
4// Copyright (c) 2014 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 get_ascii_dap4_h
24#define get_ascii_dap4_h 1
25
26namespace libdap {
27 class DMR ;
28}
29
30namespace dap_asciival {
31
32void print_values_as_ascii(libdap::DMR *dmr, std::ostream &strm);
33
34}
35
36#endif // get_ascii_dap4_h
37