final public class InventoryHolder implements org.omg.CORBA.portable.Streamable {
  public Inventory value;
  public InventoryHolder() {
  }
  public InventoryHolder(Inventory value) {
    this.value = value;
  }
  public void _read(org.omg.CORBA.portable.InputStream input) {
    value = InventoryHelper.read(input);
  }
  public void _write(org.omg.CORBA.portable.OutputStream output) {
    InventoryHelper.write(output, value);
  }
  public org.omg.CORBA.TypeCode _type() {
    return InventoryHelper.type();
  }
}
