/*
 * File: ./REMOTEINTERFACE/REMOTEPLAYERHOLDER.JAVA
 * From: REMOTE.IDL
 * Date: Thu Jan 21 23:55:04 1999
 *   By: C:\JDK1.2\BIN\IDLTOJ~1.EXE Java IDL 1.2 Nov 10 1997 13:52:11
 */

package RemoteInterface;
public final class RemotePlayerHolder
     implements org.omg.CORBA.portable.Streamable{
    //	instance variable 
    public RemoteInterface.RemotePlayer value;
    //	constructors 
    public RemotePlayerHolder() {
	this(null);
    }
    public RemotePlayerHolder(RemoteInterface.RemotePlayer __arg) {
	value = __arg;
    }

    public void _write(org.omg.CORBA.portable.OutputStream out) {
        RemoteInterface.RemotePlayerHelper.write(out, value);
    }

    public void _read(org.omg.CORBA.portable.InputStream in) {
        value = RemoteInterface.RemotePlayerHelper.read(in);
    }

    public org.omg.CORBA.TypeCode _type() {
        return RemoteInterface.RemotePlayerHelper.type();
    }
}
