Class: Quickfix::QuantityType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ QuantityType

Returns a new instance of QuantityType.



6441
6442
6443
6444
6445
6446
6447
# File 'lib/quickfix_fields.rb', line 6441

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