Class: Quickfix::PriorityIndicator

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PriorityIndicator

Returns a new instance of PriorityIndicator.



8599
8600
8601
8602
8603
8604
8605
# File 'lib/quickfix_fields.rb', line 8599

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