bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
FoCovJsonModule.h
1// -*- mode: c++; c-basic-offset:4 -*-
2//
3// FoCovJsonModule.h
4//
5// This file is part of BES CovJSON File Out Module
6//
7// Copyright (c) 2018 OPeNDAP, Inc.
8// Author: Corey Hemphill <hemphilc@oregonstate.edu>
9// Author: River Hendriksen <hendriri@oregonstate.edu>
10// Author: Riley Rimer <rrimer@oregonstate.edu>
11//
12// Adapted from the File Out JSON module implemented by Nathan Potter
13//
14// This library is free software; you can redistribute it and/or
15// modify it under the terms of the GNU Lesser General Public
16// License as published by the Free Software Foundation; either
17// version 2.1 of the License, or (at your option) any later version.
18//
19// This library is distributed in the hope that it will be useful,
20// but WITHOUT ANY WARRANTY; without even the implied warranty of
21// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22// Lesser General Public License for more details.
23//
24// You should have received a copy of the GNU Lesser General Public
25// License along with this library; if not, write to the Free Software
26// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27//
28
29#ifndef FOCOVJSONMODULE_H_
30#define FOCOVJSONMODULE_H_
31
32#include <BESAbstractModule.h>
33
50class FoCovJsonModule : public BESAbstractModule
51{
52public:
53 FoCovJsonModule() {}
54 virtual ~FoCovJsonModule() {}
55 virtual void initialize( const std::string &modname ) ;
56 virtual void terminate( const std::string &modname ) ;
57 virtual void dump( std::ostream &strm ) const ;
58} ;
59
60#endif /* FOCOVJSONMODULE_H_ */
virtual void initialize(const std::string &modname)
initialize the module by adding call backs and registering objects with the framework
virtual void terminate(const std::string &modname)
removes any registered callbacks or objects from the framework
virtual void dump(std::ostream &strm) const
dumps information about this object for debugging purposes