mirror of
https://github.com/paboyle/Grid.git
synced 2026-01-11 04:19:34 +00:00
Have Grid's cli interface understand floats
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user