Method: Quickfix::SenderCompID#initialize

Defined in:
lib/quickfix_fields.rb

#initialize(data = nil) ⇒ SenderCompID

Returns a new instance of SenderCompID.



1514
1515
1516
1517
1518
1519
1520
# File 'lib/quickfix_fields.rb', line 1514

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