class TablePrint::RowGroup

def vis(prefix="")

this is a development tool, to show the structure of the row/row_group tree
def vis(prefix="")
  puts "#{prefix}group"
  children.each{|c| c.vis(prefix + "  ")}
end