diff options
Diffstat (limited to 'TAO')
-rw-r--r-- | TAO/orbsvcs/tests/Trading/TTest.idl | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/TAO/orbsvcs/tests/Trading/TTest.idl b/TAO/orbsvcs/tests/Trading/TTest.idl index 756f057e266..d518aa1b58f 100644 --- a/TAO/orbsvcs/tests/Trading/TTest.idl +++ b/TAO/orbsvcs/tests/Trading/TTest.idl @@ -7,9 +7,9 @@ module TAO_Trader_Test interface Remote_Output { - void confirm (); // Ensure that the object reference returned from the query actually // works. + void confirm (); }; interface Plotter : Remote_Output @@ -29,15 +29,14 @@ interface PostScript_Printer : Remote_Output }; // Sequences used to test sequence type equivalence in the trader. -typedef CORBA::ShortSeq ShortSeq; -typedef CORBA::UShortSeq UShortSeq; -typedef CORBA::LongSeq LongSeq; -typedef CORBA::ULongSeq ULongSeq; -typedef CORBA::BooleanSeq BooleanSeq; -typedef CORBA::FloatSeq FloatSeq; -typedef CORBA::DoubleSeq DoubleSeq; -typedef CORBA::StringSeq StringSeq; - +typedef sequence<short> ShortSeq; +typedef sequence<unsigned short> UShortSeq; +typedef sequence<long> LongSeq; +typedef sequence<unsigned long> ULongSeq; +typedef sequence<boolean> BooleanSeq; +typedef sequence<float> FloatSeq; +typedef sequence<double> DoubleSeq; +typedef sequence<string> StringSeq; }; |