#!/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