summaryrefslogtreecommitdiffstats
path: root/perl-install/Newt/Newt.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/Newt/Newt.pm')
-rw-r--r--perl-install/Newt/Newt.pm16
1 files changed, 16 insertions, 0 deletions
diff --git a/perl-install/Newt/Newt.pm b/perl-install/Newt/Newt.pm
new file mode 100644
index 000000000..80dbaf54f
--- /dev/null
+++ b/perl-install/Newt/Newt.pm
@@ -0,0 +1,16 @@
+package Newt;
+
+use strict;
+use vars qw($VERSION @ISA);
+use DynaLoader;
+
+use vars qw($VERSION @ISA);
+@ISA = qw(DynaLoader);
+$VERSION = '0.01';
+bootstrap Newt $VERSION;
+
+package Newt::Component;
+package Newt::Grid;
+
+
+1;