def __init__(self): GdalAlgorithm.__init__(self) self.processing = False
def __init__(self): GdalAlgorithm.__init__(self)
def processAlgorithm(self, parameters, context, feedback): self.processing = True GdalAlgorithm.processAlgorithm(parameters, self, context) self.processing = False
def processAlgorithm(self, feedback): self.processing = True GdalAlgorithm.processAlgorithm(self, feedback) self.processing = False
def processAlgorithm(self, progress): self.processing = True GdalAlgorithm.processAlgorithm(self, progress) self.processing = False
def processAlgorithm(self, parameters, context, feedback): self.processing = True GdalAlgorithm.processAlgorithm(parameters, None, self) self.processing = False
def processAlgorithm(self, context, feedback): self.processing = True GdalAlgorithm.processAlgorithm(None, self) self.processing = False