Class: Quickfix::IndexSeries

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

Returns a new instance of IndexSeries.



25629
25630
25631
25632
25633
25634
25635
# File 'lib/quickfix_fields.rb', line 25629

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

Class Method Details

.fieldObject



25626
25627
25628
# File 'lib/quickfix_fields.rb', line 25626

def IndexSeries.field
  return 1957
end