19 Plugin::addPluginProperty( const TQString& key, const TQString& value )
21 m_properties[key.lower()] = value;
26 Plugin::pluginProperty( const TQString& key )
28 if ( m_properties.find( key.lower() ) == m_properties.end() )
31 return m_properties[key.lower()];
36 Plugin::hasPluginProperty( const TQString& key )
38 return m_properties.find( key.lower() ) != m_properties.end();
|