Class: Quickfix::QuantityDate

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ QuantityDate

Returns a new instance of QuantityDate.



13162
13163
13164
13165
13166
13167
13168
# File 'lib/quickfix_fields.rb', line 13162

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