| Data-AMF documentation | Contained in the Data-AMF distribution. |
Data::AMF::Type::NULL
Takuho Yoshizu <seagirl@cpan.org>
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.
| Data-AMF documentation | Contained in the Data-AMF distribution. |
package Data::AMF::Type::Null; use strict; use warnings; sub new { my $class = shift; my $self = bless { }, $class; return $self; } 1; __END__