MCPcopy Create free account
hub / github.com/StrongPC123/Far-Cry-1-Source-Full / Dump

Method Dump

CrySystem/RefReadStream.cpp:145–155  ·  view source on GitHub ↗

dumps all clients (proxies) - each uses the Dump function of the proxy

Source from the content-addressed store, hash-verified

143
144// dumps all clients (proxies) - each uses the Dump function of the proxy
145string 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)
158size_t CRefReadStream::GetSize()

Callers 5

LoadMusicDataFromLUAMethod · 0.45
OnElementFoundMethod · 0.45
~CRefStreamEngineMethod · 0.45
GetStackAndLocalsMethod · 0.45
OnElementFoundMethod · 0.45

Calls 3

beginMethod · 0.45
endMethod · 0.45
emptyMethod · 0.45

Tested by

no test coverage detected