Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Oct 15, 2018
1 parent 6f261f7 commit e55bb7a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/core/qgsgeometryoptions.cpp
Expand Up @@ -53,6 +53,26 @@ void QgsGeometryOptions::apply( QgsGeometry &geometry ) const
geometry.removeDuplicateNodes();
}

QStringList QgsGeometryOptions::geometryChecks() const
{
return mGeometryChecks;
}

void QgsGeometryOptions::setGeometryChecks( const QStringList &geometryChecks )
{
mGeometryChecks = geometryChecks;
}

QVariantMap QgsGeometryOptions::checkConfiguration( const QString &checkId ) const
{
return mCheckConfiguration.value( checkId ).toMap();
}

void QgsGeometryOptions::setCheckConfiguration( const QString &checkId, const QVariantMap &checkConfiguration )
{
mCheckConfiguration[checkId] = checkConfiguration;
}

void QgsGeometryOptions::writeXml( QDomNode &node ) const
{
QDomElement geometryOptionsElement = node.ownerDocument().createElement( QStringLiteral( "geometryOptions" ) );
Expand Down

0 comments on commit e55bb7a

Please sign in to comment.