TestReporter.cc

Go to the documentation of this file.
00001 // TestReporter.cc
00002 
00003 #include <iostream>
00004 
00005 using std::cout ;
00006 using std::endl ;
00007 
00008 #include "TestReporter.h"
00009 
00010 TestReporter::TestReporter( string name )
00011     : BESReporter(),
00012       _name( name )
00013 {
00014 }
00015 
00016 TestReporter::~TestReporter()
00017 {
00018 }
00019 
00020 void
00021 TestReporter::report( const BESDataHandlerInterface &dhi )
00022 {
00023     cout << _name << " reporting" << endl ;
00024 }
00025 

Generated on Sat Jan 19 04:05:37 2008 for OPeNDAP Back End Server (BES) by  doxygen 1.5.4