File: Employee.pm

package info (click to toggle)
libclass-trait-perl 0.31-1
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 364 kB
  • ctags: 156
  • sloc: perl: 2,467; makefile: 46
file content (7 lines) | stat: -rw-r--r-- 79 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
package Employee;
use strict;
use warnings;

use base qw(PersonWithTitle);

1;