#include module TAO_Trader_Test { interface Remote_Output { // Ensure that the object reference returned from the query actually // works. void confirm (); }; interface Plotter : Remote_Output { }; interface Printer : Remote_Output { }; interface File_System : Remote_Output { }; interface PostScript_Printer : Remote_Output { }; // Sequences used to test sequence type equivalence in the trader. typedef sequence ShortSeq; typedef sequence UShortSeq; typedef sequence LongSeq; typedef sequence ULongSeq; typedef sequence BooleanSeq; typedef sequence FloatSeq; typedef sequence DoubleSeq; typedef sequence StringSeq; };