mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
67f0a70c33
- Reorganization continues - New tool (make_filter) for filtering make output added
14 lines
172 B
Perl
14 lines
172 B
Perl
package type;
|
|
|
|
use strict;
|
|
|
|
sub new {
|
|
my $proto = shift;
|
|
my $class = ref($proto) || $proto;
|
|
my $self = {};
|
|
bless ($self, $class);
|
|
|
|
return $self;
|
|
}
|
|
|
|
1;
|