Class: Quickfix::NumOfComplexInstruments

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) ⇒ NumOfComplexInstruments

Returns a new instance of NumOfComplexInstruments.



62315
62316
62317
62318
62319
62320
62321
# File 'lib/quickfix_fields.rb', line 62315

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

Class Method Details

.fieldObject



62312
62313
62314
# File 'lib/quickfix_fields.rb', line 62312

def NumOfComplexInstruments.field
  return 2562
end