-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuery.pm
More file actions
82 lines (45 loc) · 900 Bytes
/
Copy pathQuery.pm
File metadata and controls
82 lines (45 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package Opimd::Query;
=pod
=head1 Query
Opimd::Query - Non dBus object
=head1 SYNOPSIS
my $object = Opimd::Query->new(
foo => 'bar',
flag => 1,
);
$object->dummy;
=head1 DESCRIPTION
The author was too lazy to write a description.
=head1 METHODS
=cut
use strict;
use warnings;
our $VERSION = '0.01';
=pod
=head2 new
my $object = Opimd::Query->new('Contacts','phone like "93%"');
The C<new> constructor lets you create a new B<Opimd::Query> object.
So no big surprises there...
Returns a new B<Opimd::Query> or dies on error.
=cut
sub new {
my $class = shift;
my $self = bless { @_ }, $class;
return $self;
}
=pod
=head2 dummy
This method does something... apparently.
=cut
sub dummy {
my $self = shift;
# Do something here
return 1;
}
1;
=pod
=head1 SUPPORT
No support is available
=head1 AUTHOR
Copyright 2009 Anonymous.
=cut