|
NAMEExtUtils::XSpp::Node::Package - Node representing a Perl packageDESCRIPTIONAn ExtUtils::XSpp::Node subclass representing a Perl package and thus acting as a container for methods (cf. sub-class ExtUtils::XSpp::Node::Class) or functions.A literal "ExtUtils::XSpp::Node::Package" would, for example, be created from: %package{Some::Perl::Namespace} This would be compiled to a new XS line a la MODULE=$WhateverCurrentModule PACKAGE=Some::Perl::Namespace METHODSnewCreates a new "ExtUtils::XSpp::Node::Package".Named parameters: "cpp_name" indicating the C++ class name (if any), and "perl_name" indicating the name of the Perl package. If "perl_name" is not specified but "cpp_name" is, "perl_name" defaults to "cpp_name". ACCESSORScpp_nameReturns the C++ name for the package (will be used for namespaces).perl_nameReturns the Perl name for the package.set_perl_nameSetter for the Perl package name.
Visit the GSP FreeBSD Man Page Interface. |