Class: Quickfix::LastPx

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LastPx

Returns a new instance of LastPx.



1254
1255
1256
1257
1258
1259
1260
# File 'lib/quickfix_fields.rb', line 1254

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