merge MQ parameters in the variable_map container of FairMQProgramOptions class

This commit is contained in:
winckler
2016-08-04 17:53:58 +02:00
committed by Florian Uhlig
parent 2ed0c52ae8
commit bed58891ea
3 changed files with 205 additions and 23 deletions

View File

@@ -138,9 +138,9 @@ class FairProgOptions
boost::filesystem::path fConfigFile;
virtual int NotifySwitchOption();
// UpadateVarMap() and replace() --> helper functions to modify the value of variable map after calling po::store
// UpdateVarMap() and replace() --> helper functions to modify the value of variable map after calling po::store
template<typename T>
void UpadateVarMap(const std::string& key, const T& val)
void UpdateVarMap(const std::string& key, const T& val)
{
replace(fVarMap, key, val);
}