00001 // Demonstrater for AtlfastShower 00002 // 00003 // P. Sherwood 00004 00005 #ifndef FASTSHOWER_SHOWERDEMOMONI_H 00006 #define FASTSHOWER_SHOWERDEMOMONI_H 00007 00008 #ifndef FASTSHOWER_ISHOWERDEMO_H 00009 #include "FastShowerUtils/IShowerDemo.h" 00010 #endif 00011 00012 #ifndef FASTSHOWER_SHOWERDEMOBASE_H 00013 #include "FastShowerUtils/ShowerDemoBase.h" 00014 #endif 00015 // 00016 namespace FastShower{ 00017 00018 class ShowerDemoMoni: virtual public IShowerDemo, private ShowerDemoBase{ 00019 public: 00020 ShowerDemoMoni(); 00021 virtual ~ShowerDemoMoni(){}; 00022 virtual void execute(); 00023 virtual void finalise() const; 00024 }; 00025 } // end of namespace bracket 00026 #endif 00027 00028 00029 00030 00031