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

Method isSaved

src/App/DocumentPyImp.cpp:245–252  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

243}
244
245PyObject* DocumentPy::isSaved(PyObject* args)
246{
247 if (!PyArg_ParseTuple(args, "")) {
248 return nullptr;
249 }
250 bool ok = getDocumentPtr()->isSaved();
251 return Py::new_reference_to(Py::Boolean(ok));
252}
253
254PyObject* DocumentPy::getProgramVersion(PyObject* args)
255{

Callers

nothing calls this directly

Calls 1

new_reference_toFunction · 0.85

Tested by

no test coverage detected