bes  Updated for version 3.20.6
HttpdCatalogModule.h
1 
2 // -*- mode: c++; c-basic-offset:4 -*-
3 //
4 // This file is part of bes, A C++ back-end server implementation framework
5 // for the OPeNDAP Data Access Protocol.
6 //
7 // Copyright (c) 2018 OPeNDAP, Inc.
8 // Author: Nathan Potter <ndp@opendap.org>
9 //
10 // This library is free software; you can redistribute it and/or
11 // modify it under the terms of the GNU Lesser General Public
12 // License as published by the Free Software Foundation; either
13 // version 2.1 of the License, or (at your option) any later version.
14 //
15 // This library is distributed in the hope that it will be useful,
16 // but WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 // Lesser General Public License for more details.
19 //
20 // You should have received a copy of the GNU Lesser General Public
21 // License along with this library; if not, write to the Free Software
22 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 //
24 
25 #ifndef I_HttpdCatalogModule_H
26 #define I_HttpdCatalogModule_H 1
27 
28 
29 #include "BESAbstractModule.h"
30 
31 namespace httpd_catalog {
32 
34 public:
36  {
37  }
38 
39  virtual ~HttpdCatalogModule()
40  {
41  }
42 
43  virtual void initialize(const std::string &modname);
44  virtual void terminate(const std::string &modname);
45 
46  virtual void dump(std::ostream &strm) const;
47 };
48 
49 } // namespace httpd_catalog
50 
51 #endif // I_HttpdCatalogModule_H
BESAbstractModule
Definition: BESAbstractModule.h:40
httpd_catalog::HttpdCatalogModule::dump
virtual void dump(std::ostream &strm) const
dump the contents of this object to the specified ostream
Definition: HttpdCatalogModule.cc:87
httpd_catalog::HttpdCatalogModule
Definition: HttpdCatalogModule.h:33