Class: Quickfix::LegNumber

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

Returns a new instance of LegNumber.



15385
15386
15387
15388
15389
15390
15391
# File 'lib/quickfix_fields.rb', line 15385

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

Class Method Details

.fieldObject



15382
15383
15384
# File 'lib/quickfix_fields.rb', line 15382

def LegNumber.field
  return 1152
end