Class: Quickfix::CrossPrioritization

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CrossPrioritization

Returns a new instance of CrossPrioritization.



7533
7534
7535
7536
7537
7538
7539
# File 'lib/quickfix_fields.rb', line 7533

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