MCPcopy Create free account
hub / github.com/PDAL/PDAL / addWithType

Function addWithType

pdal/Metadata.hpp:469–477  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

467 }
468
469 MetadataNode addWithType(const std::string& name, const std::string& value,
470 const std::string& type, const std::string& descrip = std::string())
471 {
472 MetadataNodeImplPtr impl = m_impl->add(name);
473 impl->m_type = type;
474 impl->m_value = value;
475 impl->m_descrip = descrip;
476 return MetadataNode(impl);
477 }
478
479 MetadataNode add(const std::string& name, const double& value,
480 const std::string& descrip = std::string(), size_t precision = 10)

Callers

nothing calls this directly

Calls 2

MetadataNodeFunction · 0.70
addMethod · 0.45

Tested by

no test coverage detected