/*
 * File: ./Calculations/ComputeHolder.java
 * From: Calculations.idl
 * Date: Tue Aug 17 09:33:51 1999
 *   By: idltojava Java IDL 1.2 Nov 12 1997 12:23:47
 */

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

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

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

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