Class: Quickfix::NoPositions

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) ⇒ NoPositions

Returns a new instance of NoPositions.



9639
9640
9641
9642
9643
9644
9645
# File 'lib/quickfix_fields.rb', line 9639

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

Class Method Details

.fieldObject



9636
9637
9638
# File 'lib/quickfix_fields.rb', line 9636

def NoPositions.field
	return 702
end