Class: Quickfix::NoMatchRules

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoMatchRules

Returns a new instance of NoMatchRules.



16425
16426
16427
16428
16429
16430
16431
# File 'lib/quickfix_fields.rb', line 16425

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