Class: Quickfix::TotNumReports

Inherits:
IntField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TotNumReports

Returns a new instance of TotNumReports.



12317
12318
12319
12320
12321
12322
12323
# File 'lib/quickfix_fields.rb', line 12317

def initialize(data = nil)
  if( data == nil )
    super(911)
  else
    super(911, data)
  end
end