Help for this page

Select Code to Download


  1. or download this
    package pizzle;
    
    ...
                         lazy      => 1,
                         predicate => 'has_Dbin'
                       );
    
  2. or download this
    # Diagnostic Attributes
    has 'diagCCS' => ( is => 'rw',
    ...
                       builder => '_build_diagCFR',
                       predicate => 'has_diagCFR'
                     );
    
  3. or download this
    # Diagnostic Builders
    sub _build_diagCCS {
    ...
        my $self = shift;
        return `"$self->{Dbin}"/GetParameter "$self->{Fverbose}" 2 1 7 1`;
    }
    
  4. or download this
    # Methods
    sub CleanDproc {
    ...
    }
    
    1;
    
  5. or download this
    #!/usr/bin/perl
    
    ...
        if ($piz->DiagCCS) { $keepgoing = 0; }
    
    }