| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package GDPR::IAB::TCFv2::Constants::SpecialFeature; |
|
2
|
1
|
|
|
1
|
|
921
|
use strict; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
30
|
|
|
3
|
1
|
|
|
1
|
|
3
|
use warnings; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
41
|
|
|
4
|
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
require Exporter; |
|
6
|
1
|
|
|
1
|
|
3
|
use base qw; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
94
|
|
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
use constant { |
|
9
|
1
|
|
|
|
|
56
|
Geolocation => 1, |
|
10
|
|
|
|
|
|
|
DeviceScan => 2 |
|
11
|
1
|
|
|
1
|
|
4
|
}; |
|
|
1
|
|
|
|
|
1
|
|
|
12
|
|
|
|
|
|
|
|
|
13
|
1
|
|
|
|
|
107
|
use constant SpecialFeatureDescription => { |
|
14
|
|
|
|
|
|
|
Geolocation => "Use precise geolocation data", |
|
15
|
|
|
|
|
|
|
DeviceScan => "Actively scan device characteristics for identification" |
|
16
|
1
|
|
|
1
|
|
3
|
}; |
|
|
1
|
|
|
|
|
1
|
|
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
our @EXPORT_OK = qw< |
|
19
|
|
|
|
|
|
|
Geolocation |
|
20
|
|
|
|
|
|
|
DeviceScan |
|
21
|
|
|
|
|
|
|
SpecialFeatureDescription |
|
22
|
|
|
|
|
|
|
>; |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
our %EXPORT_TAGS = ( all => \@EXPORT_OK ); |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
1; |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
__END__ |