Class: Quickfix::UnderlyingIDSource

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingIDSource

Returns a new instance of UnderlyingIDSource.



3854
3855
3856
3857
3858
3859
3860
# File 'lib/quickfix_fields.rb', line 3854

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