Config-INI
view release on metacpan or search on metacpan
lib/Config/INI/Reader.pm view on Meta::CPAN
#pod anything but the various C<read_*> methods, which create a reader object only
#pod ephemerally.
#pod
#pod =cut
sub new {
my ($class) = @_;
my $self = { data => {}, };
bless $self => $class;
}
#pod =head1 ORIGIN
#pod
#pod Originaly derived from L<Config::Tiny>, by Adam Kennedy.
#pod
#pod =cut
1;
lib/Config/INI/Writer.pm view on Meta::CPAN
#pod
#pod This method returns a new writer. This generally does not need to be called by
#pod anything but the various C<write_*> methods, which create a writer object only
#pod ephemerally.
#pod
#pod =cut
sub new {
my ($class) = @_;
my $self = bless { did_section => {} } => $class;
return $self;
}
1;
__END__
=pod
( run in 0.274 second using v1.01-cache-2.11-cpan-a9ef4e587e4 )