Class: Quickfix::NoDlvyInst

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

Returns a new instance of NoDlvyInst.



1800
1801
1802
1803
1804
1805
1806
# File 'lib/quickfix_fields.rb', line 1800

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

Class Method Details

.fieldObject



1797
1798
1799
# File 'lib/quickfix_fields.rb', line 1797

def NoDlvyInst.field
  return 85
end