Guest User

Untitled

a guest
Oct 19th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.53 KB | None | 0 0
  1. use Gtk2;
  2. use Glib::Object::Subclass
  3.     Gtk2::ScrolledWindow::;
  4.  
  5. BEGIN {
  6.     require Exporter;
  7.     # set the version for version checking
  8.     our $VERSION = 0.1;
  9.     # Inherit from Exporter to export functions and variables
  10.     our @ISA = qw(Exporter);
  11.     #push @ISA, qw(Exporter);
  12.     # Functions and variables which are exported by default
  13.     our @EXPORT = qw(LOG_NOTICE LOG_WARN LOG_ERROR LOG_FATAL LOG_DEBUG);
  14.     # Functions and variables which can be optionally exported
  15.     #our @EXPORT_OK = qw($Var1 %Hashit func3);
  16. }
Add Comment
Please, Sign In to add comment