mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-14 19:15:55 +08:00
Add stub for the IntentModel
CURA-6534
This commit is contained in:
parent
d69c4d0979
commit
266cf52cbc
17
cura/Machines/Models/IntentModel.py
Normal file
17
cura/Machines/Models/IntentModel.py
Normal file
@ -0,0 +1,17 @@
|
||||
# Copyright (c) 2019 Ultimaker B.V.
|
||||
# Cura is released under the terms of the LGPLv3 or higher.
|
||||
|
||||
from typing import Optional
|
||||
from PyQt5.QtCore.QObject import QObject
|
||||
from UM.Qt.ListModel import ListModel
|
||||
from PyQt5.QtCore import Qt
|
||||
|
||||
|
||||
class IntentModel(ListModel):
|
||||
def __init__(self, parent: Optional[QObject] = None) -> None:
|
||||
super().__init__(parent)
|
||||
|
||||
self._update()
|
||||
|
||||
def _update(self) -> None:
|
||||
pass
|
Loading…
x
Reference in New Issue
Block a user