Is it not possible to have sequences of objects in Ice-E? Or am I just doing something wrong? For example, attempting to compile the following Slice code:
...gives this error:Code:#ifndef CPB_TEST_ICE #define CPB_TEST_ICE module CPBTest { class Foo { int bar; }; sequence<Foo> FooArray; }; #endif
However, if I change Foo to a struct, then everything works fine. Is this normal? I couldn't find any mention of this restriction in the Ice-E README.Code:Test.ice:8: Sequence `FooArray' cannot contain object values.
Many thanks,
chris

Reply With Quote