Class: Quickfix::EncodedAllocTextLen

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



4530
4531
4532
4533
4534
4535
4536
# File 'lib/quickfix_fields.rb', line 4530

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

Class Method Details

.fieldObject



4527
4528
4529
# File 'lib/quickfix_fields.rb', line 4527

def EncodedAllocTextLen.field
  return 360
end