Class: Quickfix::NoAdditionalTerms

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

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

Class Method Details

.fieldObject



27524
27525
27526
# File 'lib/quickfix_fields.rb', line 27524

def NoAdditionalTerms.field
	return 40019
end