#include <SimplePinger.h>
Inheritance diagram for FastShower::SimplePinger:
Public Methods | |
SimplePinger (int indent=0) | |
IPinger * | clone () const |
virtual void | action (const IDebug *) |
the ping methods of the destination class uses this method to print |
|
Definition at line 26 of file SimplePinger.h. References FastShower::IPrintPinger::indent(). Referenced by clone().
00026 :PrintPingerBase(indent){}; |
|
Implements FastShower::IPrintPinger. Definition at line 5 of file SimplePinger.cxx. References SimplePinger().
00005 { 00006 IPinger* p = new SimplePinger(*this); 00007 return p; 00008 } |
|
the ping methods of the destination class uses this method to print
Implements FastShower::IPrintPinger. Definition at line 10 of file SimplePinger.cxx. References FastShower::IPrintPinger::indent(), and FastShower::IDebug::name().
00010 { 00011 00012 cout<<indent()<<d->name()<< endl; 00013 } |