00001 #ifndef FASTSHOWER_DUMMYFN_H 00002 #define FASTSHOWER_DUMMYFN_H 00003 00004 #ifndef FASTSHOWER_IFN_H 00005 #include "FastShowerUtils/IFn.h" 00006 #endif 00007 00008 #ifndef FASTSHOWER_IDEBUG_H 00009 #include "FastShowerUtils/IDebug.h" 00010 #endif 00011 00012 #ifndef FASTSHOWER_DEBUGBASE_H 00013 #include "FastShowerUtils/DebugBase.h" 00014 #endif 00015 00016 #ifndef FASTSHOWER_POLYARGS_H 00017 #include "FastShowerUtils/PolyArgs.h" 00018 #endif 00019 00020 #include <iostream> 00021 namespace FastShower{ 00028 class Dummy0: 00029 virtual public IFn, private DebugBase{ 00030 virtual double value(const PolyArgs&) const; 00031 virtual IFn* clone() const; 00032 }; 00034 class Dummy1: 00035 virtual public IFn, private DebugBase{ 00036 virtual double value(const PolyArgs&) const; 00037 virtual IFn* clone() const; 00038 }; 00039 } 00040 #endif 00041 00042