ExtUtils::XSpp::Node::Constructor - Node representing a constructor method |
ExtUtils::XSpp::Node::Constructor - Node representing a constructor method
An the ExtUtils::XSpp::Node::Method manpage subclass representing a constructor such as:
class FooBar { FooBar(); // <-- this one };
Creates a new ExtUtils::XSpp::Node::Constructor
.
Most of the functionality of this class is inherited. This means that all named parameters of the ExtUtils::XSpp::Node::Method manpage and its base class are also valid for this class' constructor.
Additionally, this class requires that no return type has been specified as constructors do not have return types.
Unlike the ret_type
method of the the ExtUtils::XSpp::Node::Method manpage class,
ret_type
will return the type ``pointer to object of this class''
as return type of the constructor.
ExtUtils::XSpp::Node::Constructor - Node representing a constructor method |