| Revision: | 1.1 |
| Committed: | Thu Apr 6 14:30:42 2006 UTC (19 years, 10 months ago) by root |
| Branch: | MAIN |
| CVS Tags: | HEAD |
| Log Message: | *** empty log message *** |
| # | Content |
|---|---|
| 1 | =head1 NAME |
| 2 | |
| 3 | PLIB::PUI - Picoscopic User Interface for OpenGL |
| 4 | |
| 5 | =head1 SYNOPSIS |
| 6 | |
| 7 | use PLIB::PUI; |
| 8 | |
| 9 | =head1 DESCRIPTION |
| 10 | |
| 11 | =over 4 |
| 12 | |
| 13 | =cut |
| 14 | |
| 15 | package PUI; |
| 16 | |
| 17 | BEGIN { |
| 18 | $VERSION = '0.1'; |
| 19 | @ISA = qw(Exporter); |
| 20 | |
| 21 | require XSLoader; |
| 22 | XSLoader::load "PLIB::PUI", $VERSION; |
| 23 | } |
| 24 | |
| 25 | 1; |
| 26 | |
| 27 | =back |
| 28 | |
| 29 | =head1 AUTHOR |
| 30 | |
| 31 | Marc Lehmann <schmorp@schmorp.de> |
| 32 | http://home.schmorp.de/ |
| 33 | |
| 34 | =cut |
| 35 |