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