Index: /trunk/glueforge/templates/psdb/alloc_h.tt
===================================================================
--- /trunk/glueforge/templates/psdb/alloc_h.tt	(revision 3869)
+++ /trunk/glueforge/templates/psdb/alloc_h.tt	(revision 3869)
@@ -0,0 +1,12 @@
+[% USE format -%]
+[% indented = format('%-15s %s') -%]
+/** Creates a new [% object_name %] object
+ *
+ *  @return A new [% object_name %] object or NULL on failure.
+ */
+
+[% object_name %] *[% namespace %]Alloc(
+[% FOREACH item = columns -%]
+    [% indented("$item.ctype", "$item.name") %];
+[% END -%]
+);
