summaryrefslogtreecommitdiff
path: root/source4/build/pidl/util.pm
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2003-11-15 07:49:03 +0000
committerAndrew Tridgell <tridge@samba.org>2003-11-15 07:49:03 +0000
commit5a28ca7bf3250f951826aa0726e4487b88062abe (patch)
treee59602931956fa85755bb53241719aba6d71f4bd /source4/build/pidl/util.pm
parentba5a060136145abdfa4915fe0fecc4afe1180627 (diff)
downloadsamba-5a28ca7bf3250f951826aa0726e4487b88062abe.tar.gz
samba-5a28ca7bf3250f951826aa0726e4487b88062abe.tar.bz2
samba-5a28ca7bf3250f951826aa0726e4487b88062abe.zip
support a new value() attribute that allows us to auto-fill certain
elements. Used at the moment for string lengths. the regular expression isn't right, but it works for the case I need. Perl expert needed :) (This used to be commit c7ddd6b2aadeb3bbd2ad520a9e074866b434cbba)
Diffstat (limited to 'source4/build/pidl/util.pm')
-rw-r--r--source4/build/pidl/util.pm5
1 files changed, 5 insertions, 0 deletions
diff --git a/source4/build/pidl/util.pm b/source4/build/pidl/util.pm
index 9e7b909109..341502e551 100644
--- a/source4/build/pidl/util.pm
+++ b/source4/build/pidl/util.pm
@@ -353,5 +353,10 @@ sub is_constant($)
return 0;
}
+sub dump($)
+{
+ print Dumper shift;
+}
+
1;