mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-01 00:04:27 +08:00

These are created whenever a cloud printer of a new printer type is added. CURA-9277 Co-authored-by: casperlamboo <c.lamboo@ultimaker.com>
17 lines
374 B
Python
17 lines
374 B
Python
from typing import List
|
|
|
|
from cura.Settings.GlobalStack import GlobalStack
|
|
|
|
|
|
class AbstractMachine(GlobalStack):
|
|
""" Behaves as a type of machine, represents multiple machines of the same type """
|
|
|
|
def __init__(self):
|
|
super(self)
|
|
self.setMetaDataEntry("type", "abstract_machine")
|
|
|
|
def getMachinesOfType(self) -> List[GlobalStack]:
|
|
pass
|
|
|
|
|