Class: Quickfix::FlexibleIndicator

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ FlexibleIndicator

Returns a new instance of FlexibleIndicator.



16529
16530
16531
16532
16533
16534
16535
# File 'lib/quickfix_fields.rb', line 16529

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