Class: Quickfix::NthToDefault

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

Returns a new instance of NthToDefault.



25434
25435
25436
25437
25438
25439
25440
# File 'lib/quickfix_fields.rb', line 25434

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

Class Method Details

.fieldObject



25431
25432
25433
# File 'lib/quickfix_fields.rb', line 25431

def NthToDefault.field
  return 1942
end