Class: Quickfix::SwapPoints

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SwapPoints

Returns a new instance of SwapPoints.



14332
14333
14334
14335
14336
14337
14338
# File 'lib/quickfix_fields.rb', line 14332

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