Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Properly convert to QgsVectorLayerEditpassTrough subclass
  • Loading branch information
m-kuhn committed Mar 29, 2019
1 parent 1942507 commit d76b313
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
10 changes: 10 additions & 0 deletions python/core/auto_generated/qgsvectorlayereditpassthrough.sip.in
Expand Up @@ -8,11 +8,21 @@



%ModuleHeaderCode
#include <qgsvectorlayereditpassthrough.h>
%End

class QgsVectorLayerEditPassthrough : QgsVectorLayerEditBuffer
{

%TypeHeaderCode
#include "qgsvectorlayereditpassthrough.h"
%End
%ConvertToSubClassCode
if ( qobject_cast<QgsVectorLayerEditPassthrough *>( sipCpp ) )
sipType = sipType_QgsVectorLayerEditPassthrough;
else
sipType = nullptr;
%End
public:
QgsVectorLayerEditPassthrough( QgsVectorLayer *layer );
Expand Down
16 changes: 16 additions & 0 deletions src/core/qgsvectorlayereditpassthrough.h
Expand Up @@ -22,12 +22,28 @@ class QgsVectorLayer;
class QgsVectorLayerUndoPassthroughCommand;
class QgsTransaction;

#ifdef SIP_RUN
% ModuleHeaderCode
#include <qgsvectorlayereditpassthrough.h>
% End
#endif

/**
* \ingroup core
* \class QgsVectorLayerEditPassthrough
*/
class CORE_EXPORT QgsVectorLayerEditPassthrough : public QgsVectorLayerEditBuffer
{

#ifdef SIP_RUN
SIP_CONVERT_TO_SUBCLASS_CODE
if ( qobject_cast<QgsVectorLayerEditPassthrough *>( sipCpp ) )
sipType = sipType_QgsVectorLayerEditPassthrough;
else
sipType = nullptr;
SIP_END
#endif

Q_OBJECT
public:
QgsVectorLayerEditPassthrough( QgsVectorLayer *layer );
Expand Down

0 comments on commit d76b313

Please sign in to comment.