OPeNDAP Hyrax Back End Server (BES)  Updated for version 3.8.3
DapRequestHandler.h
Go to the documentation of this file.
00001 // DapRequestHandler.h
00002 
00003 #ifndef I_DapRequestHandler_H
00004 #define I_DapRequestHandler_H
00005 
00006 #include "BESRequestHandler.h"
00007 
00008 class DapRequestHandler : public BESRequestHandler {
00009 public:
00010                         DapRequestHandler( const string &name ) ;
00011     virtual             ~DapRequestHandler( void ) ;
00012 
00013     virtual void        dump( ostream &strm ) const ;
00014 
00015     static bool         dap_build_das( BESDataHandlerInterface &dhi ) ;
00016     static bool         dap_build_dds( BESDataHandlerInterface &dhi ) ;
00017     static bool         dap_build_data( BESDataHandlerInterface &dhi ) ;
00018     static bool         dap_build_vers( BESDataHandlerInterface &dhi ) ;
00019     static bool         dap_build_help( BESDataHandlerInterface &dhi ) ;
00020 };
00021 
00022 #endif // DapRequestHandler.h
00023