Class: Quickfix::UnderlyingIndexAnnexVersion

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingIndexAnnexVersion

Returns a new instance of UnderlyingIndexAnnexVersion.



26240
26241
26242
26243
26244
26245
26246
# File 'lib/quickfix_fields.rb', line 26240

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