Class: Quickfix::Product

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ Product

Returns a new instance of Product.



6389
6390
6391
6392
6393
6394
6395
# File 'lib/quickfix_fields.rb', line 6389

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