mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-16 03:07:53 -06:00
WIP: Create ContainerNode and ContainerGroup
This commit is contained in:
parent
e65adc7258
commit
d99bacb2d2
2 changed files with 22 additions and 7 deletions
|
@ -1,10 +1,13 @@
|
|||
from typing import Optional
|
||||
|
||||
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.node_for_global = None # type: Optional[ContainerNode]
|
||||
self.nodes_for_extruders = dict()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue