mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-12 01:07:52 -06:00
Added first stubs for printer output models
CL-541
This commit is contained in:
parent
f48539cc93
commit
e35fba6f05
5 changed files with 230 additions and 0 deletions
10
cura/PrinterOutput/PrintJobModel.py
Normal file
10
cura/PrinterOutput/PrintJobModel.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
# Copyright (c) 2017 Ultimaker B.V.
|
||||
# Cura is released under the terms of the LGPLv3 or higher.
|
||||
|
||||
from PyQt5.QtCore import pyqtSignal, pyqtProperty, QObject, QVariant
|
||||
|
||||
|
||||
class PrintJobModel(QObject):
|
||||
|
||||
def __init__(self, parent=None):
|
||||
super().__init__(parent)
|
Loading…
Add table
Add a link
Reference in a new issue