diff options
-rw-r--r-- | LedgerSMB/Employee.pm | 3 | ||||
-rw-r--r-- | LedgerSMB/Location.pm | 2 | ||||
-rw-r--r-- | LedgerSMB/Log.pm | 1 |
3 files changed, 6 insertions, 0 deletions
diff --git a/LedgerSMB/Employee.pm b/LedgerSMB/Employee.pm index 9552a8da..a299ea86 100644 --- a/LedgerSMB/Employee.pm +++ b/LedgerSMB/Employee.pm @@ -31,8 +31,11 @@ your software. package LedgerSMB::Employee; use LedgerSMB; use LedgerSMB::DBObject; +our $VERSION = '1.0.0'; + @ISA = (LedgerSMB::DBObject); + sub AUTOLOAD { my $procname = "employee_$LedgerSMB::Employee::Autoload"; $self->exec_method($procname); diff --git a/LedgerSMB/Location.pm b/LedgerSMB/Location.pm index c58dbab0..3c7eda52 100644 --- a/LedgerSMB/Location.pm +++ b/LedgerSMB/Location.pm @@ -32,6 +32,8 @@ your software. package LedgerSMB::Location; use LedgerSMB; use LedgerSMB::DBObject; +our $VERSION = '1.0.0'; + @ISA = (LedgerSMB::DBObject); sub AUTOLOAD { diff --git a/LedgerSMB/Log.pm b/LedgerSMB/Log.pm index 558578ec..a0bd80b4 100644 --- a/LedgerSMB/Log.pm +++ b/LedgerSMB/Log.pm @@ -51,6 +51,7 @@ use Data::Dumper; use LedgerSMB::Sysconfig; use Carp (); +our $VERSION = '1.0.0'; our $fh; |