Class: Quickfix::CrossPrioritization

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

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

Class Method Details

.fieldObject



7530
7531
7532
# File 'lib/quickfix_fields.rb', line 7530

def CrossPrioritization.field
  return 550
end