MCPcopy Create free account
hub / github.com/OctoMap/octomap / readPlainASCII

Method readPlainASCII

octomap/src/ScanGraph.cpp:426–434  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

424 }
425
426 void ScanGraph::readPlainASCII(const std::string& filename){
427 std::ifstream infile(filename.c_str());
428 if (!infile.is_open()){
429 OCTOMAP_ERROR_STR("Filestream to "<< filename << " not open, nothing read.");
430 return;
431 }
432 readPlainASCII(infile);
433 infile.close();
434 }
435
436 std::istream& ScanGraph::readPlainASCII(std::istream& s){
437 std::string currentLine;

Callers 1

mainFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected