Class: Quickfix::NumOfSimpleInstruments

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ NumOfSimpleInstruments

Returns a new instance of NumOfSimpleInstruments.



22041
22042
22043
22044
22045
22046
22047
# File 'lib/quickfix_fields.rb', line 22041

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

Class Method Details

.fieldObject



22038
22039
22040
# File 'lib/quickfix_fields.rb', line 22038

def NumOfSimpleInstruments.field
  return 1606
end