Help for this page

Select Code to Download


  1. or download this
        $p->{Vcpeid}{$cpeid} = RepoVData->new() unless blessed $p->{Vcpeid
    +}{$cpeid};
        $p->{Vcpeid}{$cpeid}{RepoDB} = RepoDB->new() unless;
        $p->{Vcpeid}{$cpeid}{RepoDB}->{$nam} = VR->new()
    
  2. or download this
      sub mkBless($;$) {
        my $targ = shift;
    ...
        mkBless(\$p->{Vcpeid}{$cpeid}, RepoVData->new);
        mkBless(\$p->{Vcpeid}{$cpeid}{RepoDB}, RepoDB->new());
        mkBless(\$p->{Vcpeid}{$cpeid}{RepoDB}{$nam}, VR->new());
    
  3. or download this
      sub mkBless($;$) {
        my $targ = shift;
    ...
        }
        $obj
      }