Class: Quickfix::NumBidders

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NumBidders

Returns a new instance of NumBidders.



5206
5207
5208
5209
5210
5211
5212
# File 'lib/quickfix_fields.rb', line 5206

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