diff options
author | Arne Georg Gleditsch <argggh@lxr.linpro.no> | 2007-07-05 00:51:08 +0200 |
---|---|---|
committer | Arne Georg Gleditsch <argggh@lxr.linpro.no> | 2007-07-05 00:51:08 +0200 |
commit | e9fa4c98bb5f084739d3418ade3f0c51e34a0aa1 (patch) | |
tree | fec1d635625e031cde7cba1b0a1d95ee92ac760b /lib/LXRng/Index.pm |
Rebase tree.
Diffstat (limited to 'lib/LXRng/Index.pm')
-rw-r--r-- | lib/LXRng/Index.pm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/LXRng/Index.pm b/lib/LXRng/Index.pm new file mode 100644 index 0000000..e0d5794 --- /dev/null +++ b/lib/LXRng/Index.pm @@ -0,0 +1,11 @@ +package LXRng::Index; + +use strict; + +sub transaction(&@) { + my ($code, $index) = @_; + + $index->transaction($code); +} + +1; |