bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
get_xml_data.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_xml_data_h
24#define E_get_xml_data_h 1
25
26namespace libdap {
27 class BaseType;
28 class DDS;
29 class XMLWriter;
30}
31
32namespace xml_data {
33 void get_data_values_as_xml(libdap::DDS *dds, libdap::XMLWriter *writer);
34 libdap::DDS *dds_to_xd_dds(libdap::DDS *dds);
35 libdap::BaseType *basetype_to_xd(libdap::BaseType *bt);
36}
37
38#endif // E_get_xml_data_h
39