Examples of calls to SIDL overloaded methods are based on the
overload_sample.sidl file shown in Section 5.7.
Recall that the file describes three versions of the getValue method.
The first takes no arguments, the second takes an integer, and the
third a boolean. Each is called in the code snippet below
integer*8 t, except logical b1, bretval integer*4 i1, iretval call Overload_Sample__create_f (t, except) call Overload_Sample_getValue_f (t, iretval, except) call Overload_Sample_getValueInt_f (t, i1, iretval, except) call Overload_Sample_getValueBool_f (t, b1, bretval, except)