Py::Object ParameterGrpPy::notifyAll(const Py::Tuple& args) { if (!PyArg_ParseTuple(args.ptr(), "")) throw Py::Exception(); _cParamGrp->NotifyAll(); return Py::None(); }
PyObject *ParameterGrpPy::PyNotifyAll(PyObject *args) { if (!PyArg_ParseTuple(args, "")) // convert args: Python->C return NULL; // NULL triggers exception PY_TRY { _cParamGrp->NotifyAll(); Py_Return; }PY_CATCH; }