00001 // agglistT.h 00002 00003 #ifndef I_agglistT_H 00004 #define I_agglistT_H 00005 00006 #include <string> 00007 00008 using std::string ; 00009 00010 #include "baseApp.h" 00011 00012 class BESAggregationServer ; 00013 00014 class agglistT : public baseApp { 00015 public: 00016 agglistT(void) : baseApp() {} 00017 virtual ~agglistT(void) {} 00018 virtual int run(void); 00019 00020 static BESAggregationServer *h1( string handler_name ) ; 00021 static BESAggregationServer *h2( string handler_name ) ; 00022 static BESAggregationServer *h3( string handler_name ) ; 00023 static BESAggregationServer *h4( string handler_name ) ; 00024 }; 00025 00026 #endif 00027