# (c) 2007 by Ralf Ertzinger # licensed under GNU GPL v2 package videosite::GetterBase; use videosite::Base; @ISA = qw(videosite::Base); use strict; sub new { my $class = shift; my $self = $class->SUPER::new( NAME => 'FlashGetter', TYPE => 'getter', @_, ); return bless($self, $class); }