HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
UT_OStream Class Reference

#include <UT_OStream.h>

Public Types

enum  Uninitialized { NO_INIT }
 Tag for suppressing uninitialization. More...
 
typedef char char_type
 
typedef int64 pos_type
 
typedef UT_IOS_SEEK seek_type
 

Public Member Functions

 UT_OStream (Uninitialized, UT_IOS_TYPE bin)
 
 ~UT_OStream ()=default
 
void setStreamRef (UT_OStream &os)
 
 UT_OStream (std::ostream &os, UT_IOS_TYPE bin)
 
 UT_OStream (std::ostream &os, bool binary)
 
std::ostream & getOStream ()
 
void setOStream (std::ostream &os)
 
bool isAscii () const
 
bool isBinary () const
 
int64 write (const bool *buf, int64 cnt=1, bool nl=false)
 
int64 write (const int16 *buf, int64 cnt=1, bool nl=false)
 
int64 write (const uint16 *buf, int64 cnt=1, bool nl=false)
 
int64 write (const int32 *buf, int64 cnt=1, bool nl=false)
 
int64 write (const uint32 *buf, int64 cnt=1, bool nl=false)
 
int64 write (const int64 *buf, int64 cnt=1, bool nl=false)
 
int64 write (const uint64 *buf, int64 cnt=1, bool nl=false)
 
template<typename DEST_TYPE >
int64 write (const fpreal32 *buf, int64 cnt=1, bool nl=false)
 
template<typename DEST_TYPE >
int64 write (const fpreal64 *buf, int64 cnt=1, bool nl=false)
 
bool write (const UT_String &str, bool nl=false)
 
bool write (const UT_StringRef &str, bool nl=false)
 
bool write (const std::string &str, bool nl=false)
 
int64 bwrite (const bool *buf, int64 cnt=1)
 
int64 bwrite (const char *buf, int64 cnt=1)
 
int64 bwrite (const unsigned char *buf, int64 cnt=1)
 
int64 bwrite (const signed char *buf, int64 cnt=1)
 
int64 bwrite (const int16 *buf, int64 cnt=1)
 
int64 bwrite (const uint16 *buf, int64 cnt=1)
 
int64 bwrite (const int32 *buf, int64 cnt=1)
 
int64 bwrite (const uint32 *buf, int64 cnt=1)
 
int64 bwrite (const int64 *buf, int64 cnt=1)
 
int64 bwrite (const uint64 *buf, int64 cnt=1)
 
template<typename DEST_TYPE >
int64 bwrite (const fpreal32 *buf, int64 cnt=1)
 
template<typename DEST_TYPE >
int64 bwrite (const fpreal64 *buf, int64 cnt=1)
 
bool bwrite (const UT_String &str)
 
bool bwrite (const UT_StringRef &str)
 
bool bwrite (const std::string &str)
 
int64 awrite (const bool *buf, int64 cnt=1, bool nl=false)
 
int64 awrite (const char *buf, int64 cnt=1, bool nl=false)
 
int64 awrite (const unsigned char *buf, int64 cnt=1, bool nl=false)
 
int64 awrite (const signed char *buf, int64 cnt=1, bool nl=false)
 
int64 awrite (const int16 *buf, int64 cnt=1, bool nl=false)
 
int64 awrite (const uint16 *buf, int64 cnt=1, bool nl=false)
 
int64 awrite (const int32 *buf, int64 cnt=1, bool nl=false)
 
int64 awrite (const uint32 *buf, int64 cnt=1, bool nl=false)
 
int64 awrite (const int64 *buf, int64 cnt=1, bool nl=false)
 
int64 awrite (const uint64 *buf, int64 cnt=1, bool nl=false)
 
int64 awrite (const fpreal32 *buf, int64 cnt=1, bool nl=false)
 
int64 awrite (const fpreal64 *buf, int64 cnt=1, bool nl=false)
 
bool awrite (const UT_String &str, bool nl=false)
 
bool awrite (const UT_StringRef &str, bool nl=false)
 
bool awrite (const std::string &str, bool nl=false)
 

Friends

class UT_API UT_OStreamAutoBinary
 
UT_OStreamoperator<< (UT_OStream &os, int16 value)
 
UT_OStreamoperator<< (UT_OStream &os, uint16 value)
 
UT_OStreamoperator<< (UT_OStream &os, int32 value)
 
UT_OStreamoperator<< (UT_OStream &os, uint32 value)
 
UT_OStreamoperator<< (UT_OStream &os, int64 value)
 
UT_OStreamoperator<< (UT_OStream &os, uint64 value)
 
UT_OStreamoperator<< (UT_OStream &os, fpreal32 value)
 
UT_OStreamoperator<< (UT_OStream &os, fpreal64 value)
 
UT_OStreamoperator<< (UT_OStream &os, char value)
 
UT_OStreamoperator<< (UT_OStream &os, unsigned char value)
 
UT_OStreamoperator<< (UT_OStream &os, const char *value)
 
UT_OStreamoperator<< (UT_OStream &os, long value)
 
UT_OStreamoperator<< (UT_OStream &os, unsigned long value)
 
UT_OStreamput (char_type ch)
 
UT_OStreamwrite (const char_type *str, int64 count)
 
UT_OStreamflush ()
 
UT_OStreamseekp (pos_type offset, seek_type dir=UT_IOS_SEEK_BEG)
 
pos_type tellp ()
 
int precision () const
 
int precision (int dig)
 
int width () const
 
int width (int dig)
 
SYS_SAFE_BOOL operator bool () const
 
bool operator! () const
 
bool bad () const
 
bool eof () const
 
bool fail () const
 
bool good () const
 
void setstate (std::ios::iostate state)
 

Detailed Description

Examples:
CHOP/CHOP_Spring.C, and SOP/SOP_CustomBrush.C.

Definition at line 35 of file UT_OStream.h.

Member Typedef Documentation

typedef char UT_OStream::char_type

Definition at line 38 of file UT_OStream.h.

Definition at line 39 of file UT_OStream.h.

Definition at line 40 of file UT_OStream.h.

Member Enumeration Documentation

Tag for suppressing uninitialization.

Enumerator
NO_INIT 

Definition at line 43 of file UT_OStream.h.

Constructor & Destructor Documentation

UT_OStream::UT_OStream ( std::ostream &  os,
UT_IOS_TYPE  bin 
)
inline

Construct UT_OStream with reference to the given std::ostream and streaming mode.

Definition at line 49 of file UT_OStream.h.

UT_OStream::UT_OStream ( std::ostream &  os,
bool  binary 
)
inline

Construct UT_OStream with reference to the given std::ostream and streaming mode.

Definition at line 54 of file UT_OStream.h.

UT_OStream::UT_OStream ( Uninitialized  ,
UT_IOS_TYPE  bin 
)
inline

Construct uninitialized UT_OStream with a given streaming mode. You must call setOStream() before this object can be used.

Definition at line 62 of file UT_OStream.h.

UT_OStream::~UT_OStream ( )
default

Member Function Documentation

int64 UT_OStream::awrite ( const bool *  buf,
int64  cnt = 1,
bool  nl = false 
)
inline

Platform consistent ASCII writes of data.

Parameters
bufThe array to write.
cntThe number of array elements to write.
nlIf true, a newline is appended, else a space is appended.
Returns
The number of elements written.

Definition at line 531 of file UT_OStream.h.

int64 UT_OStream::awrite ( const char *  buf,
int64  cnt = 1,
bool  nl = false 
)

Platform consistent ASCII writes of data.

Parameters
bufThe array to write.
cntThe number of array elements to write.
nlIf true, a newline is appended, else a space is appended.
Returns
The number of elements written.
int64 UT_OStream::awrite ( const unsigned char *  buf,
int64  cnt = 1,
bool  nl = false 
)

Platform consistent ASCII writes of data.

Parameters
bufThe array to write.
cntThe number of array elements to write.
nlIf true, a newline is appended, else a space is appended.
Returns
The number of elements written.
int64 UT_OStream::awrite ( const signed char *  buf,
int64  cnt = 1,
bool  nl = false 
)

Platform consistent ASCII writes of data.

Parameters
bufThe array to write.
cntThe number of array elements to write.
nlIf true, a newline is appended, else a space is appended.
Returns
The number of elements written.
int64 UT_OStream::awrite ( const int16 buf,
int64  cnt = 1,
bool  nl = false 
)

Platform consistent ASCII writes of data.

Parameters
bufThe array to write.
cntThe number of array elements to write.
nlIf true, a newline is appended, else a space is appended.
Returns
The number of elements written.
int64 UT_OStream::awrite ( const uint16 buf,
int64  cnt = 1,
bool  nl = false 
)

Platform consistent ASCII writes of data.

Parameters
bufThe array to write.
cntThe number of array elements to write.
nlIf true, a newline is appended, else a space is appended.
Returns
The number of elements written.
int64 UT_OStream::awrite ( const int32 buf,
int64  cnt = 1,
bool  nl = false 
)

Platform consistent ASCII writes of data.

Parameters
bufThe array to write.
cntThe number of array elements to write.
nlIf true, a newline is appended, else a space is appended.
Returns
The number of elements written.
int64 UT_OStream::awrite ( const uint32 buf,
int64  cnt = 1,
bool  nl = false 
)

Platform consistent ASCII writes of data.

Parameters
bufThe array to write.
cntThe number of array elements to write.
nlIf true, a newline is appended, else a space is appended.
Returns
The number of elements written.
int64 UT_OStream::awrite ( const int64 buf,
int64  cnt = 1,
bool  nl = false 
)

Platform consistent ASCII writes of data.

Parameters
bufThe array to write.
cntThe number of array elements to write.
nlIf true, a newline is appended, else a space is appended.
Returns
The number of elements written.
int64 UT_OStream::awrite ( const uint64 buf,
int64  cnt = 1,
bool  nl = false 
)

Platform consistent ASCII writes of data.

Parameters
bufThe array to write.
cntThe number of array elements to write.
nlIf true, a newline is appended, else a space is appended.
Returns
The number of elements written.
int64 UT_OStream::awrite ( const fpreal32 buf,
int64  cnt = 1,
bool  nl = false 
)

Platform consistent ASCII writes of data.

Parameters
bufThe array to write.
cntThe number of array elements to write.
nlIf true, a newline is appended, else a space is appended.
Returns
The number of elements written.
int64 UT_OStream::awrite ( const fpreal64 buf,
int64  cnt = 1,
bool  nl = false 
)

Platform consistent ASCII writes of data.

Parameters
bufThe array to write.
cntThe number of array elements to write.
nlIf true, a newline is appended, else a space is appended.
Returns
The number of elements written.
bool UT_OStream::awrite ( const UT_String str,
bool  nl = false 
)

Platform consistent ASCII writes of strings.

Parameters
strThe string to write.
nlIf true, a newline is appended, else a space is appended. This parameter is ignored for binary writes.
Returns
true if the string was successfully written out.
bool UT_OStream::awrite ( const UT_StringRef str,
bool  nl = false 
)

Platform consistent ASCII writes of strings.

Parameters
strThe string to write.
nlIf true, a newline is appended, else a space is appended. This parameter is ignored for binary writes.
Returns
true if the string was successfully written out.
bool UT_OStream::awrite ( const std::string str,
bool  nl = false 
)

Platform consistent ASCII writes of strings.

Parameters
strThe string to write.
nlIf true, a newline is appended, else a space is appended. This parameter is ignored for binary writes.
Returns
true if the string was successfully written out.
bool UT_OStream::bad ( ) const

Compatibility methods for std::ostream replacement.

int64 UT_OStream::bwrite ( const bool *  buf,
int64  cnt = 1 
)
inline

Platform consistent binary writes of data. The data will be byte-swapped according to the Houdini standard.

Parameters
bufThe array to write.
cntThe number of array elements to write.
Returns
The number of elements written.

Definition at line 499 of file UT_OStream.h.

int64 UT_OStream::bwrite ( const char *  buf,
int64  cnt = 1 
)

Platform consistent binary writes of data. The data will be byte-swapped according to the Houdini standard.

Parameters
bufThe array to write.
cntThe number of array elements to write.
Returns
The number of elements written.
int64 UT_OStream::bwrite ( const unsigned char *  buf,
int64  cnt = 1 
)

Platform consistent binary writes of data. The data will be byte-swapped according to the Houdini standard.

Parameters
bufThe array to write.
cntThe number of array elements to write.
Returns
The number of elements written.
int64 UT_OStream::bwrite ( const signed char *  buf,
int64  cnt = 1 
)

Platform consistent binary writes of data. The data will be byte-swapped according to the Houdini standard.

Parameters
bufThe array to write.
cntThe number of array elements to write.
Returns
The number of elements written.
int64 UT_OStream::bwrite ( const int16 buf,
int64  cnt = 1 
)

Platform consistent binary writes of data. The data will be byte-swapped according to the Houdini standard.

Parameters
bufThe array to write.
cntThe number of array elements to write.
Returns
The number of elements written.
int64 UT_OStream::bwrite ( const uint16 buf,
int64  cnt = 1 
)

Platform consistent binary writes of data. The data will be byte-swapped according to the Houdini standard.

Parameters
bufThe array to write.
cntThe number of array elements to write.
Returns
The number of elements written.
int64 UT_OStream::bwrite ( const int32 buf,
int64  cnt = 1 
)

Platform consistent binary writes of data. The data will be byte-swapped according to the Houdini standard.

Parameters
bufThe array to write.
cntThe number of array elements to write.
Returns
The number of elements written.
int64 UT_OStream::bwrite ( const uint32 buf,
int64  cnt = 1 
)

Platform consistent binary writes of data. The data will be byte-swapped according to the Houdini standard.

Parameters
bufThe array to write.
cntThe number of array elements to write.
Returns
The number of elements written.
int64 UT_OStream::bwrite ( const int64 buf,
int64  cnt = 1 
)

Platform consistent binary writes of data. The data will be byte-swapped according to the Houdini standard.

Parameters
bufThe array to write.
cntThe number of array elements to write.
Returns
The number of elements written.
int64 UT_OStream::bwrite ( const uint64 buf,
int64  cnt = 1 
)

Platform consistent binary writes of data. The data will be byte-swapped according to the Houdini standard.

Parameters
bufThe array to write.
cntThe number of array elements to write.
Returns
The number of elements written.
template<typename DEST_TYPE >
int64 UT_OStream::bwrite ( const fpreal32 buf,
int64  cnt = 1 
)

Platform consistent binary writes of data. The data will be byte-swapped according to the Houdini standard.

Parameters
bufThe array to write.
cntThe number of array elements to write.
Returns
The number of elements written.
template<typename DEST_TYPE >
int64 UT_OStream::bwrite ( const fpreal64 buf,
int64  cnt = 1 
)

Platform consistent binary writes of data. The data will be byte-swapped according to the Houdini standard.

Parameters
bufThe array to write.
cntThe number of array elements to write.
Returns
The number of elements written.
bool UT_OStream::bwrite ( const UT_String str)

Platform consistent binary writes of strings.

Parameters
strThe string to write.
Returns
true if the string was successfully written out.
bool UT_OStream::bwrite ( const UT_StringRef str)

Platform consistent binary writes of strings.

Parameters
strThe string to write.
Returns
true if the string was successfully written out.
bool UT_OStream::bwrite ( const std::string str)

Platform consistent binary writes of strings.

Parameters
strThe string to write.
Returns
true if the string was successfully written out.
bool UT_OStream::eof ( ) const

Compatibility methods for std::ostream replacement.

bool UT_OStream::fail ( ) const

Compatibility methods for std::ostream replacement.

UT_OStream & UT_OStream::flush ( )
inline

Compatibility methods for std::ostream replacement.

Definition at line 355 of file UT_OStream.h.

std::ostream& UT_OStream::getOStream ( )
inline

Manipulation of the underlying std::ostream reference

Definition at line 120 of file UT_OStream.h.

bool UT_OStream::good ( ) const

Compatibility methods for std::ostream replacement.

bool UT_OStream::isAscii ( ) const
inline

Determine if the stream is currently in ASCII or binary mode.

Definition at line 131 of file UT_OStream.h.

bool UT_OStream::isBinary ( ) const
inline

Determine if the stream is currently in ASCII or binary mode.

Definition at line 132 of file UT_OStream.h.

UT_OStream::operator bool ( ) const
inline

Compatibility methods for std::ostream replacement.

Definition at line 428 of file UT_OStream.h.

bool UT_OStream::operator! ( void  ) const
inline

Compatibility methods for std::ostream replacement.

Definition at line 434 of file UT_OStream.h.

int UT_OStream::precision ( ) const

Compatibility methods for std::ostream replacement.

int UT_OStream::precision ( int  dig)

Compatibility methods for std::ostream replacement.

UT_OStream & UT_OStream::put ( char_type  ch)
inline

Compatibility methods for std::ostream replacement.

Definition at line 341 of file UT_OStream.h.

UT_OStream & UT_OStream::seekp ( UT_OStream::pos_type  offset,
UT_OStream::seek_type  dir = UT_IOS_SEEK_BEG 
)
inline

Compatibility methods for std::ostream replacement.

Definition at line 362 of file UT_OStream.h.

void UT_OStream::setOStream ( std::ostream &  os)
inline

Manipulation of the underlying std::ostream reference

Definition at line 121 of file UT_OStream.h.

void UT_OStream::setstate ( std::ios::iostate  state)
inline

Compatibility methods for std::ostream replacement.

Definition at line 95 of file UT_OStream.h.

void UT_OStream::setStreamRef ( UT_OStream os)
inline

Set the stream reference to same as the given UT_OStream object.

Note
The binary flag of this stream is not modified.

Definition at line 126 of file UT_OStream.h.

UT_OStream::pos_type UT_OStream::tellp ( )
inline

Compatibility methods for std::ostream replacement.

Definition at line 380 of file UT_OStream.h.

int UT_OStream::width ( ) const

Compatibility methods for std::ostream replacement.

int UT_OStream::width ( int  dig)

Compatibility methods for std::ostream replacement.

UT_OStream & UT_OStream::write ( const char_type str,
int64  count 
)
inline

Compatibility methods for std::ostream replacement.

Examples:
CHOP/CHOP_Spring.C, and SOP/SOP_CustomBrush.C.

Definition at line 348 of file UT_OStream.h.

int64 UT_OStream::write ( const bool *  buf,
int64  cnt = 1,
bool  nl = false 
)

Write array data to the stream. It will call bwrite() or awrite() depending on the current streaming mode. For binary output, the data will be byte-swapped according to the Houdini standard.

Parameters
bufThe array to write.
cntThe number of array elements to write.
nlIf true, a newline is appended, else a space is appended. This parameter is ignored for binary writes.
Returns
The number of elements written.
int64 UT_OStream::write ( const int16 buf,
int64  cnt = 1,
bool  nl = false 
)

Write array data to the stream. It will call bwrite() or awrite() depending on the current streaming mode. For binary output, the data will be byte-swapped according to the Houdini standard.

Parameters
bufThe array to write.
cntThe number of array elements to write.
nlIf true, a newline is appended, else a space is appended. This parameter is ignored for binary writes.
Returns
The number of elements written.
int64 UT_OStream::write ( const uint16 buf,
int64  cnt = 1,
bool  nl = false 
)

Write array data to the stream. It will call bwrite() or awrite() depending on the current streaming mode. For binary output, the data will be byte-swapped according to the Houdini standard.

Parameters
bufThe array to write.
cntThe number of array elements to write.
nlIf true, a newline is appended, else a space is appended. This parameter is ignored for binary writes.
Returns
The number of elements written.
int64 UT_OStream::write ( const int32 buf,
int64  cnt = 1,
bool  nl = false 
)

Write array data to the stream. It will call bwrite() or awrite() depending on the current streaming mode. For binary output, the data will be byte-swapped according to the Houdini standard.

Parameters
bufThe array to write.
cntThe number of array elements to write.
nlIf true, a newline is appended, else a space is appended. This parameter is ignored for binary writes.
Returns
The number of elements written.
int64 UT_OStream::write ( const uint32 buf,
int64  cnt = 1,
bool  nl = false 
)

Write array data to the stream. It will call bwrite() or awrite() depending on the current streaming mode. For binary output, the data will be byte-swapped according to the Houdini standard.

Parameters
bufThe array to write.
cntThe number of array elements to write.
nlIf true, a newline is appended, else a space is appended. This parameter is ignored for binary writes.
Returns
The number of elements written.
int64 UT_OStream::write ( const int64 buf,
int64  cnt = 1,
bool  nl = false 
)

Write array data to the stream. It will call bwrite() or awrite() depending on the current streaming mode. For binary output, the data will be byte-swapped according to the Houdini standard.

Parameters
bufThe array to write.
cntThe number of array elements to write.
nlIf true, a newline is appended, else a space is appended. This parameter is ignored for binary writes.
Returns
The number of elements written.
int64 UT_OStream::write ( const uint64 buf,
int64  cnt = 1,
bool  nl = false 
)

Write array data to the stream. It will call bwrite() or awrite() depending on the current streaming mode. For binary output, the data will be byte-swapped according to the Houdini standard.

Parameters
bufThe array to write.
cntThe number of array elements to write.
nlIf true, a newline is appended, else a space is appended. This parameter is ignored for binary writes.
Returns
The number of elements written.
template<typename DEST_TYPE >
int64 UT_OStream::write ( const fpreal32 buf,
int64  cnt = 1,
bool  nl = false 
)

Write array data to the stream. It will call bwrite() or awrite() depending on the current streaming mode. For binary output, the data will be byte-swapped according to the Houdini standard.

Parameters
bufThe array to write.
cntThe number of array elements to write.
nlIf true, a newline is appended, else a space is appended. This parameter is ignored for binary writes.
Returns
The number of elements written.
template<typename DEST_TYPE >
int64 UT_OStream::write ( const fpreal64 buf,
int64  cnt = 1,
bool  nl = false 
)

Write array data to the stream. It will call bwrite() or awrite() depending on the current streaming mode. For binary output, the data will be byte-swapped according to the Houdini standard.

Parameters
bufThe array to write.
cntThe number of array elements to write.
nlIf true, a newline is appended, else a space is appended. This parameter is ignored for binary writes.
Returns
The number of elements written.
bool UT_OStream::write ( const UT_String str,
bool  nl = false 
)
inline

Write string data to the stream. It will call bwrite() or awrite() depending on the current streaming mode.

Parameters
strThe string to write.
nlIf true, a newline is appended, else a space is appended. This parameter is ignored for binary writes.
Returns
true if the string was successfully written out.

Definition at line 466 of file UT_OStream.h.

bool UT_OStream::write ( const UT_StringRef str,
bool  nl = false 
)
inline

Write string data to the stream. It will call bwrite() or awrite() depending on the current streaming mode.

Parameters
strThe string to write.
nlIf true, a newline is appended, else a space is appended. This parameter is ignored for binary writes.
Returns
true if the string was successfully written out.

Definition at line 471 of file UT_OStream.h.

bool UT_OStream::write ( const std::string str,
bool  nl = false 
)
inline

Write string data to the stream. It will call bwrite() or awrite() depending on the current streaming mode.

Parameters
strThe string to write.
nlIf true, a newline is appended, else a space is appended. This parameter is ignored for binary writes.
Returns
true if the string was successfully written out.

Definition at line 476 of file UT_OStream.h.

Friends And Related Function Documentation

UT_OStream& operator<< ( UT_OStream os,
int16  value 
)
friend

Compatibility methods for std::ostream replacement.

UT_OStream& operator<< ( UT_OStream os,
uint16  value 
)
friend

Compatibility methods for std::ostream replacement.

UT_OStream& operator<< ( UT_OStream os,
int32  value 
)
friend

Compatibility methods for std::ostream replacement.

UT_OStream& operator<< ( UT_OStream os,
uint32  value 
)
friend

Compatibility methods for std::ostream replacement.

UT_OStream& operator<< ( UT_OStream os,
int64  value 
)
friend

Compatibility methods for std::ostream replacement.

UT_OStream& operator<< ( UT_OStream os,
uint64  value 
)
friend

Compatibility methods for std::ostream replacement.

UT_OStream& operator<< ( UT_OStream os,
fpreal32  value 
)
friend

Compatibility methods for std::ostream replacement.

UT_OStream& operator<< ( UT_OStream os,
fpreal64  value 
)
friend

Compatibility methods for std::ostream replacement.

UT_OStream& operator<< ( UT_OStream os,
char  value 
)
friend

Compatibility methods for std::ostream replacement.

UT_OStream& operator<< ( UT_OStream os,
unsigned char  value 
)
friend

Compatibility methods for std::ostream replacement.

UT_OStream& operator<< ( UT_OStream os,
const char *  value 
)
friend

Compatibility methods for std::ostream replacement.

UT_OStream& operator<< ( UT_OStream os,
long  value 
)
friend

Compatibility methods for std::ostream replacement.

UT_OStream& operator<< ( UT_OStream os,
unsigned long  value 
)
friend

Compatibility methods for std::ostream replacement.

Definition at line 248 of file UT_OStream.h.


The documentation for this class was generated from the following file: