Class: Quickfix::SymbolPositionNumber

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

Returns a new instance of SymbolPositionNumber.



79293
79294
79295
79296
79297
79298
79299
# File 'lib/quickfix_fields.rb', line 79293

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

Class Method Details

.fieldObject



79290
79291
79292
# File 'lib/quickfix_fields.rb', line 79290

def SymbolPositionNumber.field
  return 2957
end