Class: Quickfix::NTPositionLimit

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

Returns a new instance of NTPositionLimit.



13097
13098
13099
13100
13101
13102
13103
# File 'lib/quickfix_fields.rb', line 13097

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

Class Method Details

.fieldObject



13094
13095
13096
# File 'lib/quickfix_fields.rb', line 13094

def NTPositionLimit.field
  return 971
end