And another one.

This commit is contained in:
Colin Kuskie 2009-02-27 19:23:18 +00:00
parent 46a3620daf
commit 444ff307e0

View file

@ -0,0 +1,17 @@
package WebGUI::Macro::Callback;
use strict;
use warnings;
my $callback = sub {''};
sub process {
return $callback->(@_);
}
sub setCallback {
$callback = shift;
}
1;