Class: Quickfix::Spread

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ Spread

Returns a new instance of Spread.



5674
5675
5676
5677
5678
5679
5680
# File 'lib/quickfix_fields.rb', line 5674

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