Class: Quickfix::PositionLimit

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

Instance Method Summary collapse

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