Class: Quickfix::MDValueTier

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MDValueTier

Returns a new instance of MDValueTier.



75783
75784
75785
75786
75787
75788
75789
# File 'lib/quickfix_fields.rb', line 75783

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