Class: Quickfix::DlvyInst

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DlvyInst

Returns a new instance of DlvyInst.



1813
1814
1815
1816
1817
1818
1819
# File 'lib/quickfix_fields.rb', line 1813

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