00001 #ifndef FASTSHOWER_IPINGER_H 00002 #define FASTSHOWER_IPINGER_H 00003 00004 #ifndef STD_STRING_H 00005 #define STD_STRING_H 00006 #include <string> 00007 #endif 00008 00009 namespace FastShower{ 00014 using std::string; 00015 class IDebug; 00016 class IPinger{ 00017 public: 00018 virtual IPinger* clone() const = 0; 00019 virtual void action(const IDebug*) = 0; 00020 }; 00021 } 00022 #endif 00023 00024 00025