21 Plugin::addPluginProperty( const TQString& key, const TQString& value ) 23 m_properties[key.lower()] = value; 28 Plugin::pluginProperty( const TQString& key ) 30 if ( m_properties.find( key.lower() ) == m_properties.end() ) 33 return m_properties[key.lower()]; 38 Plugin::hasPluginProperty( const TQString& key ) 40 return m_properties.find( key.lower() ) != m_properties.end();
|