Class: Quickfix::ReversalIndicator

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ReversalIndicator

Returns a new instance of ReversalIndicator.



9613
9614
9615
9616
9617
9618
9619
# File 'lib/quickfix_fields.rb', line 9613

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