1package Mail::LMLM::Object;
2$Mail::LMLM::Object::VERSION = '0.6807';
3use strict;
4use warnings;
5
6sub new
7{
8    my $class = shift;
9    my $self  = {};
10
11    bless( $self, $class );
12
13    $self->initialize(@_);
14
15    return $self;
16}
17
18sub initialize
19{
20    my $self = shift;
21
22    return 0;
23}
24
25sub destroy_
26{
27    my $self = shift;
28
29    return 0;
30}
31
32sub DESTROY
33{
34    my $self = shift;
35
36    $self->destroy_();
37}
38
391;
40
41__END__
42
43=pod
44
45=encoding UTF-8
46
47=head1 NAME
48
49Mail::LMLM::Object
50
51Warning! This is an internal Mail::LMLM class. It is used as the base class
52for all LMLM objects.
53
54=head1 VERSION
55
56version 0.6807
57
58=head1 FUNCTIONS
59
60=head2 new
61
62The default constructor.
63
64=head2 $self->initialize(@args)
65
66Should be over-rided to initialize the object.
67
68=head2 $self->destroy_()
69
70Destroys the object.
71
72=head2 DESTROY
73
74the default destructor.
75
76=head1 AUTHOR
77
78Shlomi Fish, L<http://www.shlomifish.org/>.
79
80=for :stopwords cpan testmatrix url bugtracker rt cpants kwalitee diff irc mailto metadata placeholders metacpan
81
82=head1 SUPPORT
83
84=head2 Websites
85
86The following websites have more information about this module, and may be of help to you. As always,
87in addition to those websites please use your favorite search engine to discover more resources.
88
89=over 4
90
91=item *
92
93MetaCPAN
94
95A modern, open-source CPAN search engine, useful to view POD in HTML format.
96
97L<https://metacpan.org/release/Mail-LMLM>
98
99=item *
100
101RT: CPAN's Bug Tracker
102
103The RT ( Request Tracker ) website is the default bug/issue tracking system for CPAN.
104
105L<https://rt.cpan.org/Public/Dist/Display.html?Name=Mail-LMLM>
106
107=item *
108
109CPANTS
110
111The CPANTS is a website that analyzes the Kwalitee ( code metrics ) of a distribution.
112
113L<http://cpants.cpanauthors.org/dist/Mail-LMLM>
114
115=item *
116
117CPAN Testers
118
119The CPAN Testers is a network of smoke testers who run automated tests on uploaded CPAN distributions.
120
121L<http://www.cpantesters.org/distro/M/Mail-LMLM>
122
123=item *
124
125CPAN Testers Matrix
126
127The CPAN Testers Matrix is a website that provides a visual overview of the test results for a distribution on various Perls/platforms.
128
129L<http://matrix.cpantesters.org/?dist=Mail-LMLM>
130
131=item *
132
133CPAN Testers Dependencies
134
135The CPAN Testers Dependencies is a website that shows a chart of the test results of all dependencies for a distribution.
136
137L<http://deps.cpantesters.org/?module=Mail::LMLM>
138
139=back
140
141=head2 Bugs / Feature Requests
142
143Please report any bugs or feature requests by email to C<bug-mail-lmlm at rt.cpan.org>, or through
144the web interface at L<https://rt.cpan.org/Public/Bug/Report.html?Queue=Mail-LMLM>. You will be automatically notified of any
145progress on the request by the system.
146
147=head2 Source Code
148
149The code is open to the world, and available for you to hack on. Please feel free to browse it and play
150with it, or whatever. If you want to contribute patches, please send me a diff or prod me to pull
151from your repository :)
152
153L<https://github.com/shlomif/perl-mail-lmlm>
154
155  git clone git://github.com/shlomif/perl-mail-lmlm.git
156
157=head1 AUTHOR
158
159Shlomi Fish
160
161=head1 BUGS
162
163Please report any bugs or feature requests on the bugtracker website
164L<https://github.com/shlomif/perl-mail-lmlm/issues>
165
166When submitting a bug or request, please include a test-file or a
167patch to an existing test-file that illustrates the bug or desired
168feature.
169
170=head1 COPYRIGHT AND LICENSE
171
172This software is Copyright (c) 2020 by Shlomi Fish.
173
174This is free software, licensed under:
175
176  The MIT (X11) License
177
178=cut
179