Class: Quickfix::ReplaceText

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ReplaceText

Returns a new instance of ReplaceText.



77122
77123
77124
77125
77126
77127
77128
# File 'lib/quickfix_fields.rb', line 77122

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