00001
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