summaryrefslogtreecommitdiffstats
path: root/PerlQt/t/My/SubCodec.pm
blob: 35e2b0ca5ae13fcaa220f4f97393e4074a1c418d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

package My::SubCodec;
use TQt;
use My::Codec;
use TQt::isa qw( My::Codec );


sub NEW
{
    shift->SUPER::NEW(@_);
}

sub bar {}

1;