Class: Quickfix::NoAdditionalTerms

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoAdditionalTerms

Returns a new instance of NoAdditionalTerms.



27527
27528
27529
27530
27531
27532
27533
# File 'lib/quickfix_fields.rb', line 27527

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