Class : MathematicaOutput
MathematicaOutput :
prototype: MathematicaOutput ()
description:default constructor
~MathematicaOutput :
prototype: ~MathematicaOutput ()
description:destructor
operator << :
prototype: friend MathematicaOutput& operator << (MathematicaOutput& , const char* c )
description:push a null-ended string on output
input parameters:
Out = reference on current output stream
c = string pointer
return value: reference on current output stream
operator << :
prototype: friend MathematicaOutput& operator << (MathematicaOutput& , const char c )
description:push a character on output
input parameters:
Out = reference on current output stream
c = character to push
return value: reference on current output stream
operator << :
prototype: friend MathematicaOutput& operator << (MathematicaOutput& , const int x )
description:push an integer on output
input parameters:
Out = reference on current output stream
x = integer to push
return value: reference on current output stream
operator << :
prototype: friend MathematicaOutput& operator << (MathematicaOutput& , const double x )
description:push a double on output
input parameters:
Out = reference on current output stream
d = double to push
return value: reference on current output stream
operator << :
prototype: friend MathematicaOutput& operator << (MathematicaOutput& , ostream& Str )
description:push an output stream on output
input parameters:
Out = reference on current output stream
Str = reference on output stream to push
return value: reference on current output stream
operator << :
prototype: friend ostream& operator << (ostream& , MathematicaOutput& Out )
description:push an MathematicaOutput output on output stream
input parameters:
Str = reference on current output stream
Out = reference on MathematicaOutput output to push
return value: reference on current output stream
operator << :
prototype: friend MathematicaOutput& operator << (MathematicaOutput& , MathematicaOutput& Out2 )
description:push a Mathematica ouput on output
input parameters:
Out1 = reference on current output stream
Out2 = Mathematica ouput to push
return value: reference on current output stream
Back to index.