::Logging::TestLogger package decleration had wrong name
[scpubgit/Object-Remote.git] / lib / Object / Remote / Tied.pm
CommitLineData
7790ca36 1package Object::Remote::Tied;
2
3use strictures 1;
4
5#a proxied tied object just ties to the
6#proxy object that exists on the remote
7#side of the actual tied variable - when
8#creating the remote tied variable the proxy
9#is passed to the constructor
10
11sub TIEHASH {
37efeb68 12 return $_[1];
7790ca36 13}
14
15sub TIEARRAY {
37efeb68 16 return $_[1];
7790ca36 17}
18
19
201;
21