Class: Quickfix::UnderlyingPositionLimit

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingPositionLimit

Returns a new instance of UnderlyingPositionLimit.



26669
26670
26671
26672
26673
26674
26675
# File 'lib/quickfix_fields.rb', line 26669

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