Skip to content
Snippets Groups Projects
Commit eb4fadd5 authored by Nikolaus Vahrenkamp's avatar Nikolaus Vahrenkamp
Browse files

Merge branch 'feature_unrecognized-parameters' into 'master'

added feature to get unrecognized parameters from parameter list in VirtualRobot::RuntimeEnvironment



See merge request !7
parents 491c393a abec7aa5
No related branches found
No related tags found
No related merge requests found
......@@ -245,6 +245,10 @@ namespace VirtualRobot
return keyValues;
}
std::vector< std::string> RuntimeEnvironment::getUnrecognizedOptions()
{
return unrecognizedOptions;
}
std::vector< std::string > RuntimeEnvironment::getDataPaths()
......
......@@ -91,6 +91,9 @@ namespace VirtualRobot
//! return all key value pairs
static std::map< std::string, std::string > getKeyValuePairs();
//! return all unrecognized options
static std::vector< std::string > getUnrecognizedOptions();
/*!
Converts strings as '(a,b,c)' to 3dim Vectors.
*/
......
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