view Lib/IMPL/Class/MethodInfo.pm @ 168:6148f89bb7bf

IMPL::SQL::Schema::Traits::Diff alfa version IMPL::lang added hash traits
author sourcer
date Mon, 16 May 2011 04:30:38 +0400
parents 76515373dac0
children d1676be8afcc
line wrap: on
line source

use strict;
package IMPL::Class::MethodInfo;

use parent qw(IMPL::Class::MemberInfo);

__PACKAGE__->PassThroughArgs;

__PACKAGE__->mk_accessors(qw(
	ReturnType
	Parameters
));

1;