package RIDL_Runtime;
public abstract class RIDL_ObjectPP extends java.rmi.server.UnicastRemoteObject   {
  protected RIDL_ObjectPP() throws java.rmi.RemoteException {} 
  protected RIDL_ObjectPP(RIDL_Object real) throws java.rmi.RemoteException {
    _set_real(real); 
  } 
  protected RIDL_Object _real; 
  
  public RIDL_Object _get_real() {return _real;}
  public void _set_real(RIDL_Object real) {_real = real;}
}
