/* File: VecRotn.idl * Author: E. W. Grundke * Comments: IDL for CORBA Demo. * 2-dimensional vectors and their rotations. */ // A structure defining what's in a vector in 2 dimensions: struct Vctr2 { double x; double y; }; // What the remote code can do for us: interface Vctr2Rotn { Vctr2 rotate(in Vctr2 v, in double degrees); // in = input only long count(); };