! returns a parameter of the XML node */
| 26 | |
| 27 | /*! returns a parameter of the XML node */ |
| 28 | std::string parm(const std::string& parmID) const { |
| 29 | std::map<std::string,std::string>::const_iterator i = parms.find(parmID); |
| 30 | if (i == parms.end()) return ""; else return i->second; |
| 31 | } |
| 32 | |
| 33 | Vec2f parm_Vec2f(const std::string& parmID) const { |
| 34 | std::map<std::string,std::string>::const_iterator i = parms.find(parmID); |
no test coverage detected