summaryrefslogtreecommitdiffstats
path: root/perl-install/Newt/Newt.pm
blob: 1a93f02a09d7881744466845afd60f811619dd50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package Newt; # $Id$

use strict;
use vars qw($VERSION @ISA);
use DynaLoader;

use vars qw($VERSION @ISA);
@ISA = qw(DynaLoader);
$VERSION = '0.01';
Newt->bootstrap($VERSION);

package Newt::Component;

our @ISA = qw(); # help perl_checker

package Newt::Grid;

our @ISA = qw(); # help perl_checker

1;