00001 #include "FastShowerUtils/Pinger/SimplePinger.h" 00002 #include "FastShowerUtils/IDebug.h" 00003 00004 namespace FastShower{ 00005 IPinger* SimplePinger::clone() const { 00006 IPinger* p = new SimplePinger(*this); 00007 return p; 00008 } 00010 void SimplePinger::action(const IDebug* d){ 00011 00012 cout<<indent()<<d->name()<< endl; 00013 } 00014 } 00015 00016 00017