line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package SNMP::Insight::Meta::Class::Trait::MIB; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
#ABSTRACT: meta class trait for MIBs roles |
4
|
|
|
|
|
|
|
|
5
|
7
|
|
|
7
|
|
32604
|
use Moose::Role; |
|
7
|
|
|
|
|
359275
|
|
|
7
|
|
|
|
|
52
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $VERSION = '0.001'; #TRIAL VERSION: |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
Moose::Util::meta_class_alias('MIB'); |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
has mib_name => ( |
12
|
|
|
|
|
|
|
is => 'rw', |
13
|
|
|
|
|
|
|
isa => 'Str', |
14
|
|
|
|
|
|
|
); |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
has mib_oid => ( |
17
|
|
|
|
|
|
|
is => 'rw', |
18
|
|
|
|
|
|
|
isa => 'Str', |
19
|
|
|
|
|
|
|
); |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
1; |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
# Local Variables: |
24
|
|
|
|
|
|
|
# mode: cperl |
25
|
|
|
|
|
|
|
# indent-tabs-mode: nil |
26
|
|
|
|
|
|
|
# cperl-indent-level: 4 |
27
|
|
|
|
|
|
|
# cperl-indent-parens-as-block: t |
28
|
|
|
|
|
|
|
# End: |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
__END__ |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=pod |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 NAME |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
SNMP::Insight::Meta::Class::Trait::MIB - meta class trait for MIBs roles |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 VERSION |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
version 0.001 |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 AUTHOR |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
Gabriele Mambrini <g.mambrini@gmail.com> |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
This software is copyright (c) 2015 by Gabriele Mambrini. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
51
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=cut |