Class: Quickfix::FirstPx

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ FirstPx

Returns a new instance of FirstPx.



13760
13761
13762
13763
13764
13765
13766
# File 'lib/quickfix_fields.rb', line 13760

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