Class: Quickfix::LinkageHandlingIndicator

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LinkageHandlingIndicator

Returns a new instance of LinkageHandlingIndicator.



60690
60691
60692
60693
60694
60695
60696
# File 'lib/quickfix_fields.rb', line 60690

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