M3::ServerView::Entry - Base class for view entries


M3-ServerView documentation Contained in the M3-ServerView distribution.

Index


Code Index:

NAME

Top

M3::ServerView::Entry - Base class for view entries

DESCRIPTION

Top

INTERFACE

Top

CLASS METHODS

new

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__