Class: Quickfix::OfferSize

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OfferSize

Returns a new instance of OfferSize.



2229
2230
2231
2232
2233
2234
2235
# File 'lib/quickfix_fields.rb', line 2229

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