Main Page | Modules | Namespace List | Class Hierarchy | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

CP_OutStream.cpp File Reference


Namespaces

namespace  CPLAT_Begin_Namespace_CPLAT

Functions

void WriteStringToStream (CP_OutStream &inStream, const CP_String &inString)
CP_OutStreamoperator<< (CP_OutStream &inStream, const char &inChar)
CP_OutStreamoperator<< (CP_OutStream &inStream, const unsigned char &inUchar)
CP_OutStreamoperator<< (CP_OutStream &inStream, const char *inChar)
CP_OutStreamoperator<< (CP_OutStream &inStream, const unsigned char *inChar)
CP_OutStreamoperator<< (CP_OutStream &inStream, const SInt16 &inSInt16)
CP_OutStreamoperator<< (CP_OutStream &inStream, const UInt16 &inUInt16)
CP_OutStreamoperator<< (CP_OutStream &inStream, const SInt32 &inSInt32)
CP_OutStreamoperator<< (CP_OutStream &inStream, const UInt32 &inUInt32)
CP_OutStreamoperator<< (CP_OutStream &inStream, const float &inFloat)
CP_OutStreamoperator<< (CP_OutStream &inStream, const double &inDouble)
CP_OutStreamoperator<< (CP_OutStream &inStream, const bool &inBool)
CP_OutStreamoperator<< (CP_OutStream &inStream, const CP_String &inString)
CP_OutStreamoperator<< (CP_OutStream &inStream, const CP_Point &inPoint)
CP_OutStreamoperator<< (CP_OutStream &inStream, const CP_Size &inSize)
CP_OutStreamoperator<< (CP_OutStream &inStream, const CP_Rect &inRect)
CP_OutStreamoperator<< (CP_OutStream &inStream, const CP_RGBColor &inRGBColor)
CP_OutStreamoperator<< (CP_OutStream &inStream, const CP_HandleBlock &inHandle)
CP_OutStreamoperator<< (CP_OutStream &inStream, const CP_PtrBlock &inPtr)
CP_OutStreamoperator<< (CP_OutStream &inStream, const CP_FileSystemSpec &inFileSpec)

Function Documentation

void WriteStringToStream CP_OutStream inStream,
const CP_String inString
 

CP_OutStream& operator<< CP_OutStream inStream,
const char &  inChar
 

<< operator for a char to write out some data from the passed in char data field.

Parameters:
inStream The CP_OutStream object used to write the data.
inChar The char to be written out.
Exceptions:
none 
Returns:
CP_OutStream& Returns a copy of this object.

CP_OutStream& operator<< CP_OutStream inStream,
const unsigned char &  inUchar
 

<< operator for an unsigned char to write out some data from the passed in unsigned char data field.

Parameters:
inStream The CP_OutStream object used to write the data.
inChar The unsigned char to be written out.
Exceptions:
none 
Returns:
CP_OutStream& Returns a copy of this object.

CP_OutStream& operator<< CP_OutStream inStream,
const char *  inChar
 

<< operator for a char * to write out some data from the passed in char * data field. The data is written out as a length (SInt32) followed by the actual char data.

Parameters:
inStream The CP_OutStream object used to write the data.
inChar The char data to be written out.
Exceptions:
none 
Returns:
CP_OutStream& Returns a copy of this object.

CP_OutStream& operator<< CP_OutStream inStream,
const unsigned char *  inChar
 

<< operator for a unsigned char * to write out some data from the passed in unsigned char * data field. The data is written out as a length (SInt32) followed by the actual char data.

Parameters:
inStream The CP_OutStream object used to write the data.
inChar The char data to be written out.
Exceptions:
none 
Returns:
CP_OutStream& Returns a copy of this object.

CP_OutStream& operator<< CP_OutStream inStream,
const SInt16 &  inSInt16
 

<< operator for a SInt16 to write out some data from the passed in SInt16 data field.

Parameters:
inStream The CP_OutStream object used to write the data.
inSInt16 The SInt16 to be written out.
Exceptions:
none 
Returns:
CP_OutStream& Returns a copy of this object.

CP_OutStream& operator<< CP_OutStream inStream,
const UInt16 &  inUInt16
 

<< operator for a UInt16 to write out some data from the passed in UInt16 data field.

Parameters:
inStream The CP_OutStream object used to write the data.
inUInt16 The UInt16 to be written out.
Exceptions:
none 
Returns:
CP_OutStream& Returns a copy of this object.

CP_OutStream& operator<< CP_OutStream inStream,
const SInt32 &  inSInt32
 

<< operator for a SInt32 to write out some data from the passed in SInt32 data field.

Parameters:
inStream The CP_OutStream object used to write the data.
inSInt32 The SInt32 to be written out.
Exceptions:
none 
Returns:
CP_OutStream& Returns a copy of this object.

CP_OutStream& operator<< CP_OutStream inStream,
const UInt32 &  inUInt32
 

<< operator for a UInt32 to write out some data from the passed in UInt32 data field.

Parameters:
inStream The CP_OutStream object used to write the data.
inUInt32 The UInt32 to be written out.
Exceptions:
none 
Returns:
CP_OutStream& Returns a copy of this object.

CP_OutStream& operator<< CP_OutStream inStream,
const float &  inFloat
 

<< operator for a float to write out some data from the passed in float data field.

Parameters:
inStream The CP_OutStream object used to write the data.
inFloat The float to be written out.
Exceptions:
none 
Returns:
CP_OutStream& Returns a copy of this object.

CP_OutStream& operator<< CP_OutStream inStream,
const double &  inDouble
 

<< operator for a double to write out some data from the passed in double data field.

Parameters:
inStream The CP_OutStream object used to write the data.
inDouble The double to be written out.
Exceptions:
none 
Returns:
CP_OutStream& Returns a copy of this object.

CP_OutStream& operator<< CP_OutStream inStream,
const bool &  inBool
 

<< operator for a bool to write out some data from the passed in bool data field.

Parameters:
inStream The CP_OutStream object used to write the data.
inBool The bool data to be written out.
Exceptions:
none 
Returns:
CP_OutStream& Returns a copy of this object.

CP_OutStream& operator<< CP_OutStream inStream,
const CP_String inString
 

<< operator for a CP_String to write out some data from the passed in CP_String object. The data is written as a length (SInt32) followed by the actual data.

Parameters:
inStream The CP_OutStream object used to write the data.
inString The CP_String object to be written out.
Exceptions:
none 
Returns:
CP_OutStream& Returns a copy of this object.

CP_OutStream& operator<< CP_OutStream inStream,
const CP_Point inPoint
 

<< operator for a CP_Point to write out some data from the passed in CP_Point object.

Parameters:
inStream The CP_OutStream object used to write the data.
inPoint The CP_Point object to be written out.
Exceptions:
none 
Returns:
CP_OutStream& Returns a copy of this object.

CP_OutStream& operator<< CP_OutStream inStream,
const CP_Size inSize
 

<< operator for a CP_Size to write out some data from the passed in CP_Size object.

Parameters:
inStream The CP_OutStream object used to write the data.
inSize The CP_Size object to be written out.
Exceptions:
none 
Returns:
CP_OutStream& Returns a copy of this object.

CP_OutStream& operator<< CP_OutStream inStream,
const CP_Rect inRect
 

<< operator for a CP_Rect to write out some data from the passed in CP_Rect object.

Parameters:
inStream The CP_OutStream object used to write the data.
inRect The CP_Rect object to be written out.
Exceptions:
none 
Returns:
CP_OutStream& Returns a copy of this object.

CP_OutStream& operator<< CP_OutStream inStream,
const CP_RGBColor inRGBColor
 

<< operator for a CP_RGBColor to write out some data from the passed in CP_RGBColor object.

Parameters:
inStream The CP_OutStream object used to write the data.
inRect The CP_RGBColor object to be written out.
Exceptions:
none 
Returns:
CP_OutStream& Returns a copy of this object.

CP_OutStream& operator<< CP_OutStream inStream,
const CP_HandleBlock inHandle
 

<< operator for a CP_HandleBlock to write out some data from the passed in CP_HandleBlock object. The data is written out as a length (SInt32) followed by the actual data.

Parameters:
inStream The CP_OutStream object used to write the data.
inHandle The CP_HandleBlock object to be written out.
Exceptions:
none 
Returns:
CP_OutStream& Returns a copy of this object.

CP_OutStream& operator<< CP_OutStream inStream,
const CP_PtrBlock inPtr
 

<< operator for a CP_PtrBlock to write out some data from the passed in CP_HandleBlock object. The data is written out as a length (SInt32) followed by the actual data.

Parameters:
inStream The CP_OutStream object used to write the data.
inPtr The CP_PtrBlock object to be written out.
Exceptions:
none 
Returns:
CP_OutStream& Returns a copy of this object.

CP_OutStream& operator<< CP_OutStream inStream,
const CP_FileSystemSpec inFileSpec
 

<< operator for a CP_FileSystemSpec to write out some data from the passed in CP_FileSystemSpec object. The data is written out a full path, length (SInt32) followed by the char data of the path.

Parameters:
inStream The CP_OutStream object used to write the data.
inFileSpec The CP_FileSystemSpec object to be written out.
Exceptions:
none 
Returns:
CP_OutStream& Returns a copy of this object.


Generated on Tue Sep 20 20:21:29 2005 for CPLAT_MacOS by  doxygen 1.4.0