#include "Throughput.h" #include "Consumer.h" #include "Supplier.h" #include "orbsvcs/Event/EC_Event_Channel.h" #include "ace/Get_Opt.h" int ACE_TMAIN(int argc, ACE_TCHAR *argv[]) { EC_Throughput driver; return driver.run (argc, argv); } // **************************************************************** EC_Throughput::EC_Throughput () { } int EC_Throughput::parse_args (int& argc, ACE_TCHAR* argv[]) { if (this->EC_Driver::parse_args (argc, argv) != 0) return -1; return 0; } void EC_Throughput::print_args () const { this->EC_Driver::print_args (); } void EC_Throughput::print_usage () { this->EC_Driver::print_usage (); } void EC_Throughput::modify_attributes (TAO_EC_Event_Channel_Attributes&) { } void EC_Throughput::execute_test () { this->EC_Driver::execute_test (); } void EC_Throughput::dump_results () { this->EC_Driver::dump_results (); }