Class: Quickfix::CrossType

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) ⇒ CrossType

Returns a new instance of CrossType.



7520
7521
7522
7523
7524
7525
7526
# File 'lib/quickfix_fields.rb', line 7520

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

Class Method Details

.fieldObject



7517
7518
7519
# File 'lib/quickfix_fields.rb', line 7517

def CrossType.field
  return 549
end