package com.vci.corba.qt.data;
|
|
/**
|
* Generated from IDL struct "BtmRefQueryOption".
|
*
|
* @author JacORB IDL compiler V 3.9
|
* @version generated at 2022-12-23 15:42:24
|
*/
|
|
public final class BtmRefQueryOptionHolder
|
implements org.omg.CORBA.portable.Streamable
|
{
|
public com.vci.corba.qt.data.BtmRefQueryOption value;
|
|
public BtmRefQueryOptionHolder ()
|
{
|
}
|
public BtmRefQueryOptionHolder(final com.vci.corba.qt.data.BtmRefQueryOption initial)
|
{
|
value = initial;
|
}
|
public org.omg.CORBA.TypeCode _type ()
|
{
|
return com.vci.corba.qt.data.BtmRefQueryOptionHelper.type ();
|
}
|
public void _read(final org.omg.CORBA.portable.InputStream _in)
|
{
|
value = com.vci.corba.qt.data.BtmRefQueryOptionHelper.read(_in);
|
}
|
public void _write(final org.omg.CORBA.portable.OutputStream _out)
|
{
|
com.vci.corba.qt.data.BtmRefQueryOptionHelper.write(_out, value);
|
}
|
}
|