Diana Software
QModuleConfig.cc
Go to the documentation of this file.
1 #include "QModuleConfig.hh"
2 
4 
5 void QModuleConfig::Dump(std::ostream& o) const
6 {
7  std::map<std::string,std::string>::const_iterator iter = fParameters.begin();
8  while(iter != fParameters.end()) {
9  o<<iter->first<<" = "<<iter->second<<std::endl;
10  iter++;
11  }
12 }
QObjectImp(QModuleConfig)
QObject to store a QBaseModule configuration.
std::map< std::string, std::string > fParameters
config and optional parameters
void Dump(std::ostream &o) const
dump parameters
Definition: QModuleConfig.cc:5