/*
 * Copyright (c) 1999 Software Architects, All Rights Reserved.
 *
 * Permission to use, copy, modify, and distribute this software
 * and its documentation for NON-COMMERCIAL purposes and without
 * fee is hereby granted provided that this copyright notice
 * appears in all copies.
 *
 * SOFTWARE ARCHITECTS MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE
 * SUITABILITY OF THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING
 * BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SOFTWARE 
 * ARCHITECTS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE 
 * AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS 
 * DERIVATIVES.
 */

/*
 * File: ./REMOTEINTERFACE/_REMOTEGAMESTUB.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 class _RemoteGameStub
	extends org.omg.CORBA.portable.ObjectImpl
    	implements RemoteInterface.RemoteGame {

    public _RemoteGameStub(org.omg.CORBA.portable.Delegate d) {
          super();
          _set_delegate(d);
    }

    private static final String _type_ids[] = {
        "IDL:RemoteInterface/RemoteGame:1.0"
    };

    public String[] _ids() { return (String[]) _type_ids.clone(); }

    //	IDL operations
    //	    Implementation of ::RemoteInterface::RemoteGame::setMove
    public void setMove(RemoteInterface.Move newMove)
 {
           org.omg.CORBA.Request r = _request("setMove");
           org.omg.CORBA.Any _newMove = r.add_in_arg();
           RemoteInterface.MoveHelper.insert(_newMove, newMove);
           r.send_oneway();
   }
    //	    Implementation of ::RemoteInterface::RemoteGame::resetGame
    public void resetGame()
 {
           org.omg.CORBA.Request r = _request("resetGame");
           r.invoke();
   }

};
