reqhandlerT.cc

Go to the documentation of this file.
00001 // reqhandlerT.C
00002 
00003 #include <iostream>
00004 
00005 using std::cerr ;
00006 using std::cout ;
00007 using std::endl ;
00008 
00009 #include "reqhandlerT.h"
00010 #include "TestRequestHandler.h"
00011 
00012 int reqhandlerT::
00013 run(void) {
00014     cout << endl << "*****************************************" << endl;
00015     cout << "Entered reqhandlerT::run" << endl;
00016 
00017     TestRequestHandler trh( "test" ) ;
00018     int retVal = trh.test() ;
00019 
00020     cout << endl << "*****************************************" << endl;
00021     cout << "Returning from reqhandlerT::run" << endl;
00022 
00023     return retVal;
00024 }
00025 
00026 int
00027 main(int argC, char **argV) {
00028     Application *app = new reqhandlerT();
00029     return app->main(argC, argV);
00030 }
00031 

Generated on Wed Aug 29 02:59:01 2007 for OPeNDAP Back End Server (BES) by  doxygen 1.5.2