diff options
author | Mark Spruiell <mes@zeroc.com> | 2006-08-24 23:00:10 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2006-08-24 23:00:10 +0000 |
commit | c8d6203027334c6ca01aa75bb799b52c4924b102 (patch) | |
tree | ed4c7e774d7a4d20573b1de660041115f952bb96 /py/modules/IcePy/Util.h | |
parent | bug 1316: auto_array (diff) | |
download | ice-c8d6203027334c6ca01aa75bb799b52c4924b102.tar.bz2 ice-c8d6203027334c6ca01aa75bb799b52c4924b102.tar.xz ice-c8d6203027334c6ca01aa75bb799b52c4924b102.zip |
bug 943: map sequence<byte> to string
Diffstat (limited to 'py/modules/IcePy/Util.h')
-rw-r--r-- | py/modules/IcePy/Util.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/py/modules/IcePy/Util.h b/py/modules/IcePy/Util.h index fc33a8ca62f..64051b717d6 100644 --- a/py/modules/IcePy/Util.h +++ b/py/modules/IcePy/Util.h @@ -114,6 +114,11 @@ bool listToStringSeq(PyObject*, Ice::StringSeq&); bool stringSeqToList(const Ice::StringSeq&, PyObject*); // +// Convert a tuple to Ice::StringSeq. +// +bool tupleToStringSeq(PyObject*, Ice::StringSeq&); + +// // Convert Ice::Context to and from a Python dictionary. // bool dictionaryToContext(PyObject*, Ice::Context&); |