9 std::string hspace(indent,
' ');
11 ss << hspace <<
"ReceivedObject:" << std::endl;
12 ss << hspace <<
" by: " << mBy << std::endl;
13 ss << hspace <<
" from: " << mFrom << std::endl;
14 ss << hspace <<
" date: " << mDate.toString() << std::endl;
15 ss << hspace <<
" id: " << mId << std::endl;
16 ss << hspace <<
" via: " << mVia << std::endl;
17 ss << hspace <<
" user-defined-parameters:" << std::endl;
18 std::vector<UserdefParam>::const_iterator cit = mUserdefinedParameters.begin();
19 for(; cit != mUserdefinedParameters.end(); ++cit)
21 ss << hspace <<
" " << cit->toString() << std::endl;
std::string toString(size_t indent=0) const