Class: Quickfix::NoPositions

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

Instance Method Summary collapse

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