MCPcopy Create free account
hub / github.com/acl-dev/acl / xml1

Method xml1

lib_acl_cpp/src/stdlib/xml1.cpp:251–262  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

249//////////////////////////////////////////////////////////////////////
250
251xml1::xml1(const char* data /* = NULL */, size_t dbuf_nblock /* = 2 */,
252 size_t dbuf_capacity /* = 100 */)
253: xml(dbuf_nblock, dbuf_capacity)
254{
255 iter_ = NULL;
256 root_ = NULL;
257
258 xml_ = acl_xml_alloc();
259 if (data && *data) {
260 update(data);
261 }
262}
263
264xml1::~xml1()
265{

Callers

nothing calls this directly

Calls 2

acl_xml_allocFunction · 0.85
updateFunction · 0.50

Tested by

no test coverage detected