MCPcopy Create free account
hub / github.com/FreeCAD/FreeCAD / isAutoCreated

Method isAutoCreated

src/App/DocumentPyImp.cpp:701–708  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

699}
700
701PyObject *DocumentPy::isAutoCreated(PyObject *args)
702{
703 if (!PyArg_ParseTuple(args, "")) {
704 return nullptr;
705 }
706 bool ok = getDocumentPtr()->isAutoCreated();
707 return Py::new_reference_to(Py::Boolean(ok));
708}
709
710PyObject* DocumentPy::recompute(PyObject* args)
711{

Callers

nothing calls this directly

Calls 1

new_reference_toFunction · 0.85

Tested by

no test coverage detected