Class: Quickfix::MatchAlgorithm

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MatchAlgorithm

Returns a new instance of MatchAlgorithm.



15255
15256
15257
15258
15259
15260
15261
# File 'lib/quickfix_fields.rb', line 15255

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