Class: Quickfix::DerivativePositionLimit

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DerivativePositionLimit

Returns a new instance of DerivativePositionLimit.



16906
16907
16908
16909
16910
16911
16912
# File 'lib/quickfix_fields.rb', line 16906

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