mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-07 00:02:15 -05:00
20 lines
288 B
Python
20 lines
288 B
Python
|
class SilentProgress():
|
||
|
|
||
|
def setText(self, text):
|
||
|
pass
|
||
|
|
||
|
def setPercentage(self, i):
|
||
|
pass
|
||
|
|
||
|
def setInfo(self, _):
|
||
|
pass
|
||
|
|
||
|
def setCommand(self, _):
|
||
|
pass
|
||
|
|
||
|
def setDebugInfo(self, _):
|
||
|
pass
|
||
|
|
||
|
def setConsoleInfo(self, _):
|
||
|
pass
|