mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
72 lines
No EOL
1.2 KiB
C++
72 lines
No EOL
1.2 KiB
C++
/*
|
|
History
|
|
=======
|
|
|
|
Notes
|
|
=======
|
|
|
|
*/
|
|
|
|
#include "../clib/stl_inc.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include "impstr.h"
|
|
|
|
|
|
ostream& operator << (ostream& os, const BObject& obj)
|
|
{
|
|
obj.impptr()->printOn(os);
|
|
return os;
|
|
}
|
|
|
|
ostream& operator << (ostream& os, const BObjectImp& objimp )
|
|
{
|
|
objimp.printOn(os);
|
|
return os;
|
|
}
|
|
void BObject::printOn(ostream& os) const
|
|
{
|
|
os << "{ BObject: " << BObjectImp::typestr(objimp->type()) << " }";
|
|
}
|
|
|
|
void BObjectImp::printOn(ostream& os) const
|
|
{
|
|
os << "{ BObjectImp: " << typestr(type()) << " }";
|
|
}
|
|
|
|
void UninitObject::printOn( ostream& os ) const
|
|
{
|
|
os << "{ Uninitialized Object }";
|
|
}
|
|
|
|
void ObjArray::printOn( ostream& os ) const
|
|
{
|
|
os << " { Array[" << ref_arr.size() << "] }";
|
|
}
|
|
|
|
void String::printOn(ostream& os) const
|
|
{
|
|
os << '\"' << value_ << '\"';
|
|
}
|
|
|
|
#if 0
|
|
void SubString::printOn( ostream& os ) const
|
|
{
|
|
os << "{ \"";
|
|
os << ref_String->value_.substr( begin-1, len );
|
|
|
|
os << "\" }";
|
|
}
|
|
#endif
|
|
|
|
void Double::printOn(ostream& os) const
|
|
{
|
|
// CHECKME: consider setting precision
|
|
os << dval_;
|
|
}
|
|
|
|
void BLong::printOn(ostream& os ) const
|
|
{
|
|
os << lval_;
|
|
} |