Class: Quickfix::UnderlyingListMethod

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingListMethod

Returns a new instance of UnderlyingListMethod.



26604
26605
26606
26607
26608
26609
26610
# File 'lib/quickfix_fields.rb', line 26604

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