Try to hide member from sip

This commit is contained in:
Nyall Dawson 2019-08-07 21:05:24 +10:00
parent 74e5ee132e
commit eface49a6a
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,6 @@ of all features rendered on a map.
struct RenderedFeatureContext
{
bool dummy;
};
virtual void handleRenderedFeature( const QgsFeature &feature, const QgsGeometry &renderedBounds, const QgsRenderedFeatureHandlerInterface::RenderedFeatureContext &context ) = 0;

View File

@ -17,6 +17,7 @@
#define QGSRENDEREDFEATUREHANDLERINTERFACE_H
#include "qgis_core.h"
#include "qgis_sip.h"
#include <QSet>
#include <QString>
@ -51,7 +52,7 @@ class CORE_EXPORT QgsRenderedFeatureHandlerInterface
{
///@cond PRIVATE
// required to allow compilation only until real members are present
bool dummy;
bool dummy; SIP_SKIP
///@endcond
};