diff options
author | Jose <jose@zeroc.com> | 2017-01-26 21:52:52 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-01-26 21:52:52 +0100 |
commit | f3eeced45abdcbb8af31569bf8cee55f0d2a3b4b (patch) | |
tree | f98f59d56e7185ee90d504cf077e57465655f7fd /python/modules/IcePy/Init.cpp | |
parent | Fixed ICE-6920 - Communicator::destroy is now noexcept (diff) | |
download | ice-f3eeced45abdcbb8af31569bf8cee55f0d2a3b4b.tar.bz2 ice-f3eeced45abdcbb8af31569bf8cee55f0d2a3b4b.tar.xz ice-f3eeced45abdcbb8af31569bf8cee55f0d2a3b4b.zip |
Python: Ice.Value implementation
Diffstat (limited to 'python/modules/IcePy/Init.cpp')
-rw-r--r-- | python/modules/IcePy/Init.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python/modules/IcePy/Init.cpp b/python/modules/IcePy/Init.cpp index a7855719137..f618e0c10eb 100644 --- a/python/modules/IcePy/Init.cpp +++ b/python/modules/IcePy/Init.cpp @@ -85,6 +85,10 @@ static PyMethodDef methods[] = PyDoc_STR(STRCAST("internal function")) }, { STRCAST("defineClass"), reinterpret_cast<PyCFunction>(IcePy_defineClass), METH_VARARGS, PyDoc_STR(STRCAST("internal function")) }, + { STRCAST("declareValue"), reinterpret_cast<PyCFunction>(IcePy_declareValue), METH_VARARGS, + PyDoc_STR(STRCAST("internal function")) }, + { STRCAST("defineValue"), reinterpret_cast<PyCFunction>(IcePy_defineValue), METH_VARARGS, + PyDoc_STR(STRCAST("internal function")) }, { STRCAST("defineException"), reinterpret_cast<PyCFunction>(IcePy_defineException), METH_VARARGS, PyDoc_STR(STRCAST("internal function")) }, { STRCAST("stringify"), reinterpret_cast<PyCFunction>(IcePy_stringify), METH_VARARGS, |