00001 #include "FastShowerUtils/Pinger/PrintPingerBase.h" 00002 #include "FastShowerUtils/IDebug.h" 00003 00004 namespace FastShower{ 00005 const int PrintPingerBase::s_step(2); 00008 void PrintPingerBase::operator++(){m_indent+=s_step;} 00009 void PrintPingerBase::operator++(int){m_indent+=s_step;} 00010 std::string PrintPingerBase::indent() const { 00011 std::string s(m_indent,' '); 00012 return s; 00013 } 00014 } 00015 00016 00017