Class: Quickfix::QtyType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ QtyType

Returns a new instance of QtyType.



11576
11577
11578
11579
11580
11581
11582
# File 'lib/quickfix_fields.rb', line 11576

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