OGS
anonymous_namespace{GMSInterface.cpp} Namespace Reference

Functions

template<typename It >
std::array< double, 3 > parsePointCoordinates (It &it)
 

Function Documentation

◆ parsePointCoordinates()

template<typename It >
std::array<double, 3> anonymous_namespace{GMSInterface.cpp}::parsePointCoordinates ( It &  it)

Definition at line 37 of file GMSInterface.cpp.

38 {
39  return {std::strtod((++it)->c_str(), nullptr),
40  std::strtod((++it)->c_str(), nullptr),
41  std::strtod((++it)->c_str(), nullptr)};
42 }

Referenced by FileIO::GMSInterface::readBoreholesFromGMS().