diff options
Diffstat (limited to 'ruby/src/IceRuby/Util.h')
-rw-r--r-- | ruby/src/IceRuby/Util.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ruby/src/IceRuby/Util.h b/ruby/src/IceRuby/Util.h index ca6c256b04d..abb70880c04 100644 --- a/ruby/src/IceRuby/Util.h +++ b/ruby/src/IceRuby/Util.h @@ -91,6 +91,12 @@ bool arrayToStringSeq(VALUE, std::vector<std::string>&); VALUE stringSeqToArray(const std::vector<std::string>&); // +// Convert a vector of Ice::Byte into a Ruby array of numbers. +// May raise RubyException. +// +VALUE createNumSeq(const std::vector<Ice::Byte>&); + +// // Convert a Ruby hash to Ice::Context. Returns true on success // and false if the value is not a hash. May raise RubyException. // |