Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
0 additions
and 29 deletions.
@@ -1,29 +0,0 @@ | ||
/*************************************************************************** | ||
qgsgeometrycheckfactory.cpp | ||
-------------------------------------- | ||
Date : September 2018 | ||
Copyright : (C) 2018 Matthias Kuhn | ||
Email : matthias@opengis.ch | ||
*************************************************************************** | ||
* * | ||
* This program is free software; you can redistribute it and/or modify * | ||
* it under the terms of the GNU General Public License as published by * | ||
* the Free Software Foundation; either version 2 of the License, or * | ||
* (at your option) any later version. * | ||
* * | ||
***************************************************************************/ | ||
|
||
#include "qgsgeometrycheckfactory.h" | ||
|
||
#include "qgis.h" | ||
|
||
bool QgsGeometryCheckFactory::isCompatible( QgsVectorLayer *layer ) const | ||
{ | ||
Q_UNUSED( layer ); | ||
return true; | ||
} | ||
|
||
QgsGeometryCheck::Flags QgsGeometryCheckFactory::flags() const | ||
{ | ||
return QgsGeometryCheck::Flags( QgsGeometryCheck::SingleGeometryCheck | QgsGeometryCheck::AvailableInValidation ); | ||
} | ||