Aw::Util - ActiveWorks Connection Descriptor Module.


Aw documentation Contained in the Aw distribution.

Index


Code Index:

NAME

Top

Aw::Util - ActiveWorks Connection Descriptor Module.

SYNOPSIS

Top

require Aw::Util;

my $cd = new Aw::Util;

DESCRIPTION

Top

Enhanced interface for the Aw.xs Connection Descriptor 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::Util;


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

	$VERSION = '0.2';
}


sub getStringSeqInfo
{
	my $result = Aw::Util::getStringSeqInfoRef ( @_ );
	( wantarray ) ? @{ $result } : $result ;
}



sub getUCStringSeqInfoAsA
{
	my $result = Aw::Util::getUCStringSeqInfoAsARef ( @_ );
	( wantarray ) ? @{ $result } : $result ;
}



sub getUCStringSeqInfoAsUTF8
{
	my $result = Aw::Util::getUCStringSeqInfoAsUTF8Ref ( @_ );
	( wantarray ) ? @{ $result } : $result ;
}



sub getStructSeqInfo
{
	my $result = Aw::Util::getStructSeqInfoRef ( @_ );
	( wantarray ) ? @{ $result } : $result ;
}



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


__END__