Class: Quickfix::AdvRefID

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

Returns a new instance of AdvRefID.



955
956
957
958
959
960
961
# File 'lib/quickfix_fields.rb', line 955

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

Class Method Details

.fieldObject



952
953
954
# File 'lib/quickfix_fields.rb', line 952

def AdvRefID.field
  return 3
end