Aw::TypeDef - ActiveWorks TypeDef Module.


Aw documentation Contained in the Aw distribution.

Index


Code Index:

NAME

Top

Aw::TypeDef - ActiveWorks TypeDef Module.

SYNOPSIS

Top

require Aw::TypeDef;

my $typeDef = new Aw::TypeDef;

DESCRIPTION

Top

Enhanced interface for the Aw.xs TypeDef methods.

AUTHOR

Top

Daniel Yacob Mekonnen, Yacob@wMUsers.Com

SEE ALSO

Top

perl(1).  Aw(3).


Aw documentation Contained in the Aw distribution.

package Aw::TypeDef;


BEGIN
{
	use strict;
	use vars qw($VERSION);

	$VERSION = '0.2';
}


sub getFieldNames
{
	my $result = Aw::TypeDef::getFieldNamesRef ( @_ );
	( wantarray ) ? @{ $result } : $result ;
}


sub toHash
{
	my $result = Aw::TypeDef::toHashRef ( @_ );
	( wantarray ) ? %{ $result } : $result ;
}


#########################################################
# Do not change this, Do not put anything below this.
# File must return "true" value at termination
1;
##########################################################


__END__