| 243 | } |
| 244 | |
| 245 | PyObject* 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 | |
| 254 | PyObject* DocumentPy::getProgramVersion(PyObject* args) |
| 255 | { |
nothing calls this directly
no test coverage detected