Esempio n. 1
0
bool QgsAuthMethodConfig::operator==( const QgsAuthMethodConfig &other ) const
{
  return ( other.id() == id()
           && other.name() == name()
           && other.uri() == uri()
           && other.method() == method()
           && other.version() == version()
           && other.configMap() == configMap() );
}
Esempio n. 2
0
QgsAuthMethodConfig::QgsAuthMethodConfig( const QgsAuthMethodConfig &methodconfig )
    : mId( methodconfig.id() )
    , mName( methodconfig.name() )
    , mUri( methodconfig.uri() )
    , mMethod( methodconfig.method() )
    , mVersion( methodconfig.version() )
    , mConfigMap( methodconfig.configMap() )
{
}