|
reSIProcate/rutil
9694
|
Allows a (possibly recursive) container of anything with operator<< to be dumped to a stream. More...
#include <Inserter.hxx>
Public Member Functions | |
| InserterClass (const T &t) | |
Public Attributes | |
| const T & | _t |
Allows a (possibly recursive) container of anything with operator<< to be dumped to a stream.
This is particularly useful within a Log call. e.g.
void logNameAddrs(vector<resip::NameAddr>& contacts) { DebugLog(<< "Contacts: " << Inserter(contacts)); }
Definition at line 270 of file Inserter.hxx.
| resip::InserterClass< T >::InserterClass | ( | const T & | t | ) | [inline] |
Definition at line 273 of file Inserter.hxx.
: _t(t) {}
| const T& resip::InserterClass< T >::_t |
Definition at line 277 of file Inserter.hxx.
1.7.5.1