Class: Quickfix::UnderlyingNTPositionLimit

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingNTPositionLimit



26682
26683
26684
26685
26686
26687
26688
# File 'lib/quickfix_fields.rb', line 26682

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