bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
FONcModule.h
1// FONcModule.h
2
3// This file is part of BES Fileout NetCDF Module.
4
5// Copyright (c) 2004,2005 University Corporation for Atmospheric Research
6// Author: Patrick West <pwest@ucar.org>
7//
8// This library is free software; you can redistribute it and/or
9// modify it under the terms of the GNU Lesser General Public
10// License as published by the Free Software Foundation; either
11// version 2.1 of the License, or (at your option) any later version.
12//
13// This library is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16// Lesser General Public License for more details.
17//
18// You should have received a copy of the GNU Lesser General Public
19// License along with this library; if not, write to the Free Software
20// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21//
22// You can contact University Corporation for Atmospheric Research at
23// 3080 Center Green Drive, Boulder, CO 80301
24
25// (c) COPYRIGHT University Corporation for Atmospheric Research 2004-2005
26// Please read the full copyright statement in the file COPYRIGHT_UCAR.
27//
28// Authors:
29// pwest Patrick West <pwest@ucar.edu>
30
31#ifndef A_FONcModule_H
32#define A_FONcModule_H 1
33
34#include <BESAbstractModule.h>
35
52class FONcModule: public BESAbstractModule {
53public:
54 FONcModule()
55 {
56 }
57 virtual ~FONcModule()
58 {
59 }
60 virtual void initialize(const std::string &modname);
61 virtual void terminate(const std::string &modname);
62
63 virtual void dump(std::ostream &strm) const;
64};
65
66#endif // A_FONcModule_H
67
virtual void dump(std::ostream &strm) const
dumps information about this object for debugging purposes
virtual void initialize(const std::string &modname)
initialize the module by adding callbacks and registering objects with the framework
Definition FONcModule.cc:63
virtual void terminate(const std::string &modname)
removes any registered callbacks or objects from the framework
Definition FONcModule.cc:96