IDL complex data types
string - sequence of characters - bounded or unbounded
- string> msg // bounded
- string msg // unbounded
wstring - sequence of Unicode characters - bounded or unbounded
sequence - one dimensional array whose members are all of the same type - bounded or unbounded
- sequence<float, 100> mySeq // bounded
- sequence<float> mySeq // unbounded
-