-----------------------------------------------------------------------
| 90 | } |
| 91 | //----------------------------------------------------------------------- |
| 92 | void StringInterface::setParameterList( const NameValuePairList ¶mList ) |
| 93 | { |
| 94 | NameValuePairList::const_iterator i, iend; |
| 95 | iend = paramList.end(); |
| 96 | for( i = paramList.begin(); i != iend; ++i ) |
| 97 | { |
| 98 | setParameter( i->first, i->second ); |
| 99 | } |
| 100 | } |
| 101 | //----------------------------------------------------------------------- |
| 102 | void StringInterface::cleanupDictionary() |
| 103 | { |
no test coverage detected