Revising the stub for ILS/Transaction/FeePayment.pm

Obviously more implementation is needed.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
This commit is contained in:
Joe Atzberger 2008-09-18 19:02:49 -05:00 committed by Galen Charlton
parent 182f9df495
commit 9c811d13be

View file

@ -1,14 +1,19 @@
package ILS::Transaction::FeePayment;
use Exporter;
use warnings;
use strict;
use vars qw($VERSION @ISA $debug);
BEGIN {
$VERSION = 1.00;
@ISA = qw(ILS::Transaction);
$debug = 0;
}
use ILS;
use ILS::Transaction;
our @ISA = qw(Exporter ILS::Transaction);
1;
__END__