Class: Quickfix::UnderlyingPool

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingPool

Returns a new instance of UnderlyingPool.



26695
26696
26697
26698
26699
26700
26701
# File 'lib/quickfix_fields.rb', line 26695

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