bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
DapModule.h
1// DapModule.h
2
3// Copyright (c) 2013 OPeNDAP, Inc. Author: James Gallagher
4// <jgallagher@opendap.org>, Patrick West <pwest@opendap.org>
5// Nathan Potter <npotter@opendap.org>
6//
7// modify it under the terms of the GNU Lesser General Public License
8// as published by the Free Software Foundation; either version 2.1 of
9// the License, or (at your option) any later version.
10//
11// This library is distributed in the hope that it will be useful, but
12// WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14// Lesser General Public License for more details.
15//
16// License along with this library; if not, write to the Free Software
17// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18// 02110-1301 U\ SA
19//
20// You can contact OPeNDAP, Inc. at PO Box 112, Saunderstown, RI.
21// 02874-0112.
22
23#ifndef I_DapModule_H
24#define I_DapModule_H 1
25
26#include "BESAbstractModule.h"
27
28class DapModule: public BESAbstractModule {
29public:
30 DapModule() { }
31 virtual ~DapModule() { }
32 virtual void initialize(const std::string &modname);
33 virtual void terminate(const std::string &modname);
34
35 virtual void dump(std::ostream &strm) const;
36};
37
38#endif // I_DapModule_H
virtual void dump(std::ostream &strm) const
dump the contents of this object to the specified ostream
Definition DapModule.cc:89