remoting works
[scpubgit/Object-Remote.git] / lib / Object / Remote / Proxy.pm
CommitLineData
9e72f0cf 1package Object::Remote::Proxy;
2
3use strictures 1;
4
5sub AUTOLOAD {
6 my $self = shift;
7 (my $method) = (our $AUTOLOAD =~ /([^:]+)$/);
2065b08b 8 $self->{remote}->${\$self->{method}}($method => @_);
9e72f0cf 9}
10
11sub DESTROY { }
12
131;