Classes | |
| class | osg::Indenter |
| class | osg::StandardStringConversionState |
| class | osg::StringConversionStateBase |
| class | osg::StringTokenizer |
Functions | |
| std::ostream & | osg::operator<< (std::ostream &stream, const Indenter &indent) |
| std::ostream & osg::operator<< | ( | std::ostream & | stream, | |
| const Indenter & | indent | |||
| ) | [inline] |
write _indent spaces to stream
Definition at line 128 of file OSGIndenter.inl.
References osg::Indenter::getIndent().
00129 { 00130 for(UInt32 i = 0; i < indent.getIndent(); i++) 00131 { 00132 stream << ' '; 00133 } 00134 00135 return stream; 00136 }
1.5.5