Help for this page

Select Code to Download


  1. or download this
      tie($corba_hash, %$hash);
      return $corba_hash; # return to the client
    
  2. or download this
     
      bless($hash, 'CORBAHash');
      $ORB->activate($hash); # register object with the ORB
      return $hash; # return to the client
    
  3. or download this
      tie(%hash, 'CORBAHash');