Cura/plugins/GCodeReader/GriffinFlavor.py
Diego Prado Gesto cab2e14728 CURA-4552 Add flavors to GCodeReader. The preRead looks for the flavor
in the GCode and then the right flavor handler is responsible for
reading the code. At this moment just the Griffin and RepRap flavors are
taken into account.
2017-11-27 16:56:26 +01:00

9 lines
No EOL
221 B
Python

# Copyright (c) 2017 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
from . import GCodeFlavor
class GriffinFlavor(GCodeFlavor.GCodeFlavor):
def __init__(self):
super().__init__()