Method: Quickfix::ResponseDestination#initialize

Defined in:
lib/quickfix_fields.rb

#initialize(data = nil) ⇒ ResponseDestination

Returns a new instance of ResponseDestination.



14774
14775
14776
14777
14778
14779
14780
# File 'lib/quickfix_fields.rb', line 14774

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