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

Function handleInputTag

pdal/PipelineReaderJSON.cpp:316–324  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

314}
315
316void handleInputTag(const std::string& tag, const TagMap& tags, std::vector<Stage *>& inputs)
317{
318 auto ii = tags.find(tag);
319 if (ii == tags.end())
320 throw pdal_error("JSON pipeline: Invalid pipeline: "
321 "undefined stage tag '" + tag + "'.");
322 else
323 inputs.push_back(ii->second);
324}
325
326
327} // unnamed namespace

Callers 1

extractInputsFunction · 0.85

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected