1 package gcc.org.omg.GIOP; 2 3 4 /** 5 * gcc/org/omg/GIOP/Version.java . 6 * Generated by the IDL-to-Java compiler (portable), version "3.1" 7 * from ../idl/GIOP.idl 8 * Wednesday, December 8, 2004 11:54:39 AM EST 9 */ 10 11 12 // IDL extended for version 1.1 and 1.2 13 public final class Version implements org.omg.CORBA.portable.IDLEntity 14 { 15 public byte major = (byte)0; 16 public byte minor = (byte)0; 17 18 public Version () 19 { 20 } // ctor 21 22 public Version (byte _major, byte _minor) 23 { 24 major = _major; 25 minor = _minor; 26 } // ctor 27 28 } // class Version 29