class TrackRecordReport::ReportColumnTotal

Object used to handle running column totals. The Report object creates one each time it adds a column. For each cell that is calculated, call the ReportColumnTotal’s “#add_cell” method to increment the running total for the column.

Public Instance Methods

add_cell( cell_data ) click to toggle source

See above.

# File lib/track_record_report.rb, line 1201
def add_cell( cell_data )
  add!( cell_data )
end