Skip to content
Snippets Groups Projects
Commit c05700fb authored by Timo Koch's avatar Timo Koch
Browse files

[params] Fix parseCommandLineArguments method to optionally take a parameterfile name

parent 15f68034
No related branches found
No related tags found
1 merge request!617[WIP] Next
......@@ -222,7 +222,7 @@ public:
defaultParams(defaultParamTree());
// parse paramters from the command line
parameterFileName = parseCommandLineArguments(argc, argv);
parameterFileName = parseCommandLineArguments(argc, argv, parameterFileName);
// otherwise use the default name (executable name + .input)
if (parameterFileName == "")
......@@ -264,9 +264,9 @@ public:
//! \brief parse the arguments given on the command line
//! \returns the parameterFileName if one was given otherwise returns empty string
static std::string parseCommandLineArguments(int argc, char **argv)
static std::string parseCommandLineArguments(int argc, char **argv,
std::string parameterFileName = "")
{
std::string parameterFileName = "";
for (int i = 1; i < argc; ++i)
{
if (argv[i][0] != '-' && i == 1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment