| M3-ServerView documentation | Contained in the M3-ServerView distribution. |
M3::ServerView::Entry - Base class for view entries
Creates a new entry.
| M3-ServerView documentation | Contained in the M3-ServerView distribution. |
package M3::ServerView::Entry; use strict; use warnings; sub new { my ($pkg) = @_; my $self = bless {}, $pkg; } 1; __END__