Class: Quickfix::MatchType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MatchType

Returns a new instance of MatchType.



7819
7820
7821
7822
7823
7824
7825
# File 'lib/quickfix_fields.rb', line 7819

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