mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 07:03:56 -06:00
WIP: Create QualityManager
This commit is contained in:
parent
0505b16ffb
commit
8ac9811b41
7 changed files with 450 additions and 7 deletions
10
cura/Machines/ContainerGroup.py
Normal file
10
cura/Machines/ContainerGroup.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
from PyQt5.Qt import QObject
|
||||
|
||||
from cura.Machines.ContainerNode import ContainerNode
|
||||
|
||||
|
||||
class ContainerGroup(QObject):
|
||||
def __init__(self, parent = None):
|
||||
super().__init__(parent)
|
||||
self.node_for_global = None # type: ContainerNode
|
||||
self.nodes_for_extruders = dict()
|
Loading…
Add table
Add a link
Reference in a new issue