Class: Quickfix::BidSize

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ BidSize

Returns a new instance of BidSize.



2216
2217
2218
2219
2220
2221
2222
# File 'lib/quickfix_fields.rb', line 2216

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