18 lines
198 B
Perl
18 lines
198 B
Perl
#!/usr/bin/perl -w
|
|
# This file was preprocessed, do not edit!
|
|
|
|
|
|
package Debconf::Iterator;
|
|
use strict;
|
|
use base qw(Debconf::Base);
|
|
|
|
|
|
sub iterate {
|
|
my $this=shift;
|
|
|
|
$this->callback->($this);
|
|
}
|
|
|
|
|
|
1
|