Class: Quickfix::NumOfCompetitors

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NumOfCompetitors

Returns a new instance of NumOfCompetitors.



24901
24902
24903
24904
24905
24906
24907
# File 'lib/quickfix_fields.rb', line 24901

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