Class: Quickfix::PositionLimit

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

Returns a new instance of PositionLimit.



13084
13085
13086
13087
13088
13089
13090
# File 'lib/quickfix_fields.rb', line 13084

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

Class Method Details

.fieldObject



13081
13082
13083
# File 'lib/quickfix_fields.rb', line 13081

def PositionLimit.field
  return 970
end