OSG::LogOStream Struct Reference
[Log]

#include <OSGLog.h>

Inheritance diagram for OSG::LogOStream:

List of all members.

Public Member Functions

 LogOStream (std::streambuf *buf)
virtual ~LogOStream (void)
void setrdbuf (std::streambuf *buf)

Detailed Description

Logger ostream, required to fix some problems between the different plattforms

Definition at line 130 of file OSGLog.h.


Constructor & Destructor Documentation

OSG::LogOStream::LogOStream ( std::streambuf *  buf  )  [inline]

Definition at line 50 of file OSGLog.inl.

00050                                         : 
00051     std::ostream(buf) 
00052 {
00053 }

OSG::LogOStream::~LogOStream ( void   )  [inline, virtual]

Definition at line 57 of file OSGLog.inl.

00058 {
00059 }


Member Function Documentation

void OSG::LogOStream::setrdbuf ( std::streambuf *  buf  )  [inline]

Definition at line 62 of file OSGLog.inl.

00063 {
00064 #ifdef OSG_STREAM_RDBUF_HAS_PARAM
00065     std::ostream::rdbuf(buf); 
00066 #else
00067     bp = buf; 
00068 #endif
00069 }


The documentation for this struct was generated from the following files: