Help for this page

Select Code to Download


  1. or download this
    my $dsgn = create_new();
    $dsgn->(method);
    ...
        my $ret = new (c++_object);
        return $ret;
    }
    
  2. or download this
    my $dsgn = create_new();
    $dsgn->(method);
    ...
        refcnt_inc($ret);
        return $ret;
    }
    
  3. or download this
    use warnings;
    use Inline C => Config =>
    ...
    print get_refcnt($x), "\n";
    refcnt_inc($x);
    print get_refcnt($x), "\n";