Hi I was justgoing over Vinoskis C++ and CORBA book and came across the IDL and the following example:<br><br>struct TimeOfDay { <br> short hour; // 0 - 23 <br> short minute; // 0 - 59 <br> short second; // 0 - 59 <br>
}; <br> <br>interface Time { <br> TimeOfDay get_gmt(); <br>}; <br> <br>I was just curious can we use std::vector type in TimeOfDay ? <br>I am still going over the book . but it will be great to have your opinions..<br>