Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Try to fix odd doc coverage test issue
  • Loading branch information
nyalldawson committed May 11, 2018
1 parent 4e5229f commit 04e527e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/porting_processing.dox
Expand Up @@ -6,7 +6,7 @@ Consequently, substantial changes are required in order to port existing 2.x Pro

- For algorithms which operate on features one-by-one (e.g. a "centroid" algorithm or "buffer" algorithm), consider subclassing the QgsProcessingFeatureBasedAlgorithm class. This class allows much of the boilerplate code for looping over features from a vector layer to be bypassed, and instead requires implementation of a processFeature method.

- Ensure that your algorithm (or algorithm's parent class) implements the new pure virtual createInstance(self) call, to return a new instance of the algorithm class. Note that this should not return a copy of the algorithm (e.g. don't return 'self'), but instead a newly constructed instance of the class. If you use a base class in your plugin for all algorithms, you can usually shortcut the createInstance implementation by placing:
- Ensure that your algorithm (or algorithm's parent class) implements the new pure virtual createInstance(self) call, to return a new instance of the algorithm class. Note that this should not return a copy of the algorithm (e.g. don't return 'self'), but instead a newly constructed instance of the class. If you use a base class in your plugin for all algorithms, you can usually shortcut the createInstance implementation by placing

def createInstance(self):
return type(self)()
Expand Down

0 comments on commit 04e527e

Please sign in to comment.