1 #
2 # Copyright (c) 2002, 2008, Oracle and/or its affiliates. All rights reserved.
3 #
4
5 #
6 # Object.pm contains perl code for exacct object manipulation.
7 #
8
9 require 5.8.4;
10 use strict;
11 use warnings;
12
13 package Sun::Solaris::Exacct::Object;
14
15 our $VERSION = '1.3';
16 use XSLoader;
17 XSLoader::load(__PACKAGE__, $VERSION);
18
19 our (@EXPORT_OK, %EXPORT_TAGS, @_Constants);
20 @EXPORT_OK = @_Constants;
21 %EXPORT_TAGS = (CONSTANTS => \@_Constants, ALL => \@EXPORT_OK);
22
23 use base qw(Exporter);
24 use Sun::Solaris::Exacct::Catalog qw(:CONSTANTS);
25
26 #
27 # Class methods
28 #
29
|
1 #
2 # Copyright (c) 2002, 2008, Oracle and/or its affiliates. All rights reserved.
3 #
4
5 #
6 # Object.pm contains perl code for exacct object manipulation.
7 #
8
9 require 5.0010;
10 use strict;
11 use warnings;
12
13 package Sun::Solaris::Exacct::Object;
14
15 our $VERSION = '1.3';
16 use XSLoader;
17 XSLoader::load(__PACKAGE__, $VERSION);
18
19 our (@EXPORT_OK, %EXPORT_TAGS, @_Constants);
20 @EXPORT_OK = @_Constants;
21 %EXPORT_TAGS = (CONSTANTS => \@_Constants, ALL => \@EXPORT_OK);
22
23 use base qw(Exporter);
24 use Sun::Solaris::Exacct::Catalog qw(:CONSTANTS);
25
26 #
27 # Class methods
28 #
29
|