Class: Quickfix::DefBidSize

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DefBidSize

Returns a new instance of DefBidSize.



3698
3699
3700
3701
3702
3703
3704
# File 'lib/quickfix_fields.rb', line 3698

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