File: MARCopt.pm

package info (click to toggle)
libmarc-perl 1.07-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 408 kB
  • ctags: 122
  • sloc: perl: 3,525; makefile: 45
file content (14 lines) | stat: -rw-r--r-- 311 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package MARCopt;
# Inheritance test for test3.t only

use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
$VERSION = '1.04';
require Exporter;
use MARC;
@ISA = qw( Exporter MARC );
@EXPORT= qw();
@EXPORT_OK= @MARC::EXPORT_OK;
%EXPORT_TAGS = %MARC::EXPORT_TAGS;

print "MARCopt inherits from MARC\n";
1;