OPeNDAP Hyrax Back End Server (BES)  Updated for version 3.8.3
DapRequestHandler.h
Go to the documentation of this file.
1 // DapRequestHandler.h
2 
3 #ifndef I_DapRequestHandler_H
4 #define I_DapRequestHandler_H
5 
6 #include "BESRequestHandler.h"
7 
9 public:
10  DapRequestHandler( const string &name ) ;
11  virtual ~DapRequestHandler( void ) ;
12 
13  virtual void dump( ostream &strm ) const ;
14 
15  static bool dap_build_das( BESDataHandlerInterface &dhi ) ;
16  static bool dap_build_dds( BESDataHandlerInterface &dhi ) ;
17  static bool dap_build_data( BESDataHandlerInterface &dhi ) ;
18  static bool dap_build_vers( BESDataHandlerInterface &dhi ) ;
19  static bool dap_build_help( BESDataHandlerInterface &dhi ) ;
20 };
21 
22 #endif // DapRequestHandler.h
23