Class: Quickfix::MidPx

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MidPx

Returns a new instance of MidPx.



8508
8509
8510
8511
8512
8513
8514
# File 'lib/quickfix_fields.rb', line 8508

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