Class: Quickfix::WireReference

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ WireReference

Returns a new instance of WireReference.



61626
61627
61628
61629
61630
61631
61632
# File 'lib/quickfix_fields.rb', line 61626

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

Class Method Details

.fieldObject



61623
61624
61625
# File 'lib/quickfix_fields.rb', line 61623

def WireReference.field
  return 2486
end