Class: Quickfix::PositionLimit

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PositionLimit

Returns a new instance of PositionLimit.



15424
15425
15426
15427
15428
15429
15430
# File 'lib/quickfix_fields.rb', line 15424

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

Class Method Details

.fieldObject



15421
15422
15423
# File 'lib/quickfix_fields.rb', line 15421

def PositionLimit.field
  return 970
end