dumps all clients (proxies) - each uses the Dump function of the proxy
| 143 | |
| 144 | // dumps all clients (proxies) - each uses the Dump function of the proxy |
| 145 | string CRefReadStream::Dump() |
| 146 | { |
| 147 | string strClients; |
| 148 | for (ProxySet::iterator it = m_setProxies.begin(); it != m_setProxies.end(); ++it) |
| 149 | { |
| 150 | if (!strClients.empty()) |
| 151 | strClients += ","; |
| 152 | strClients += (*it)->Dump(); |
| 153 | } |
| 154 | return "{"+strClients+"}"; |
| 155 | } |
| 156 | |
| 157 | // returns the size of allocated memory for this object and all subobjects (Proxies) |
| 158 | size_t CRefReadStream::GetSize() |
no test coverage detected