1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-19 00:07:05 +01:00

Have Grid's cli interface understand floats

This commit is contained in:
Daniel Richtmann
2022-02-01 23:08:09 +01:00
parent 135808dcfa
commit b4f8e87982
2 changed files with 8 additions and 0 deletions

View File

@ -167,6 +167,13 @@ void GridCmdOptionInt(std::string &str,int & val)
return;
}
void GridCmdOptionFloat(std::string &str,float & val)
{
std::stringstream ss(str);
ss>>val;
return;
}
void GridParseLayout(char **argv,int argc,
Coordinate &latt_c,