00001 #ifndef FASTSHOWER_ITESTER_H 00002 #define FASTSHOWER_ITESTER_H 00003 00004 #ifndef FASTSHOWER_TESTSTAT_H 00005 #include "FastShowerUtils/TestStat.h" 00006 #endif 00007 00008 00009 namespace FastShower{ 00012 class ITester{ 00013 public: 00014 virtual TestStat test()=0; 00015 virtual void results() const=0; 00016 virtual ~ITester() =0; 00017 }; 00018 } 00019 #endif 00020 00021 00022 00023