NAME

SystemC::Netlist::Net - Net for a SystemC Module

SYNOPSIS

use SystemC::Netlist;

...
my $net = $module->find_net ('signalname');
print $net->name;

DESCRIPTION

SystemC::Netlist creates a net for every sc_signal declaration in the current module.

ACCESSORS

$self->array

Any array declaration for the net.

$self->comment

Any comment the user placed on the same line as the net.

$self->filename

The filename the net was created in.

$self->lineno

The line number the net was created on.

$self->module

Reference to the SystemC::Netlist::Module the net is in.

$self->name

The name of the net.

$self->type

The C++ type of the net.

MEMBER FUNCTIONS

$self->lint

Checks the net for errors. Normally called by SystemC::Netlist::lint.

$self->print

Prints debugging information for this net.

SEE ALSO

SystemC::Netlist

AUTHORS

Wilson Snyder <wsnyder@wsnyder.org>