* \brief Store a textual representation of the object in a misc::StringBuffer. * * This is used by object::Object::toString. */
| 94 | * This is used by object::Object::toString. |
| 95 | */ |
| 96 | void Object::intoStringBuffer(misc::StringBuffer *sb) |
| 97 | { |
| 98 | sb->append("<not further specified object "); |
| 99 | sb->appendPointer(this); |
| 100 | sb->append(">"); |
| 101 | } |
| 102 | |
| 103 | /** |
| 104 | * \brief Return the number of bytes, this object totally uses. |
nothing calls this directly
no test coverage detected