diff --git a/src/App/FreeCADInit.py b/src/App/FreeCADInit.py index 123c7522ca..f085c24718 100644 --- a/src/App/FreeCADInit.py +++ b/src/App/FreeCADInit.py @@ -947,6 +947,17 @@ class PropertyType(IntEnum): App.PropertyType = PropertyType +class ReturnType(IntEnum): + PyObject = 0 + DocObject = 1 + DocAndPyObject = 2 + Placement = 3 + Matrix = 4 + LinkAndPlacement = 5 + LinkAndMatrix = 6 + +App.ReturnType = ReturnType + # clean up namespace del(InitApplications) del(test_ascii)