line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Deeme::Backend; |
2
|
3
|
|
|
3
|
|
12
|
use Deeme::Obj -base; |
|
3
|
|
|
|
|
4
|
|
|
3
|
|
|
|
|
22
|
|
3
|
3
|
|
|
3
|
|
14
|
use Carp 'croak'; |
|
3
|
|
|
|
|
5
|
|
|
3
|
|
|
|
|
577
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
has 'deeme'; |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
sub events_get { |
8
|
0
|
|
|
0
|
0
|
|
croak 'Method "events_get" not implemented by subclass'; |
9
|
|
|
|
|
|
|
} #get events |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
sub events_reset { |
12
|
0
|
|
|
0
|
0
|
|
croak 'Method "events_reset" not implemented by subclass'; |
13
|
|
|
|
|
|
|
} #get events |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
sub events_onces { |
16
|
0
|
|
|
0
|
0
|
|
croak 'Method "events_onces" not implemented by subclass'; |
17
|
|
|
|
|
|
|
} #get events |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
sub once_update { |
20
|
0
|
|
|
0
|
0
|
|
croak 'Method "once_update" not implemented by subclass'; |
21
|
|
|
|
|
|
|
} |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
sub event_add { |
24
|
0
|
|
|
0
|
0
|
|
croak 'Method "event_add" not implemented by subclass'; |
25
|
|
|
|
|
|
|
} #add events |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
sub event_delete { |
28
|
0
|
|
|
0
|
0
|
|
croak 'Method "event_delete" not implemented by subclass'; |
29
|
|
|
|
|
|
|
} #delete event |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
sub event_update { |
32
|
0
|
|
|
0
|
0
|
|
croak 'Method "event_update" not implemented by subclass'; |
33
|
|
|
|
|
|
|
} #update event |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
1; |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
__END__ |