NAME

Attribute::Exporter - Provides exporting attributes

SYNOPSIS

package Foo;
use parent qw(Attribute::Exporter);

sub bar :Export(common){
	# ...
}

sub baz :Exportable(util){
	# ...
}

# and later
package main;

use Foo; # import bar()

use Foo qw(:util); # import baz()

use Foo qw(:all);  # import bad() and baz()