/*
 * File: ./Calculations/GreatComputeHolder.java
 * From: ../Calculations.idl
 * Date: Sat Jun 26 11:51:04 1999
 *   By: idltojava Java IDL 1.2 Nov 12 1997 12:23:47
 */

package Calculations;
public final class GreatComputeHolder
     implements org.omg.CORBA.portable.Streamable{
    //	instance variable 
    public Calculations.GreatCompute value;
    //	constructors 
    public GreatComputeHolder() {
	this(null);
    }
    public GreatComputeHolder(Calculations.GreatCompute __arg) {
	value = __arg;
    }

    public void _write(org.omg.CORBA.portable.OutputStream out) {
        Calculations.GreatComputeHelper.write(out, value);
    }

    public void _read(org.omg.CORBA.portable.InputStream in) {
        value = Calculations.GreatComputeHelper.read(in);
    }

    public org.omg.CORBA.TypeCode _type() {
        return Calculations.GreatComputeHelper.type();
    }
}
