00001 #ifndef FASTSHOWER_IDISTPROCESSOR_H 00002 #define FASTSHOWER_IDISTPROCESSOR_H 00003 00004 namespace FastShower{ 00012 class IDistProcessor{ 00013 public: 00014 virtual ~IDistProcessor() =0; 00015 virtual double process(double) const =0; 00016 }; 00017 } 00018 #endif 00019