Guest User

Untitled

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