Class: Quickfix::CoverPrice

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CoverPrice

Returns a new instance of CoverPrice.



24953
24954
24955
24956
24957
24958
24959
# File 'lib/quickfix_fields.rb', line 24953

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