00001 // TestRequestHandler.h 00002 00003 #ifndef I_TESTREQUESTHANDLER_H 00004 #define I_TESTREQUESTHANDLER_H 00005 00006 #include "BESRequestHandler.h" 00007 00008 class TestRequestHandler : public BESRequestHandler { 00009 public: 00010 TestRequestHandler( string name ) ; 00011 virtual ~TestRequestHandler( void ) ; 00012 00013 static bool test_build_resp1( BESDataHandlerInterface &r ) ; 00014 static bool test_build_resp2( BESDataHandlerInterface &r ) ; 00015 static bool test_build_resp3( BESDataHandlerInterface &r ) ; 00016 static bool test_build_resp4( BESDataHandlerInterface &r ) ; 00017 00018 int test() ; 00019 int _resp_num ; 00020 }; 00021 00022 #endif 00023