Class: Quickfix::EncodedAllocTextLen

Inherits:
IntField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EncodedAllocTextLen

Returns a new instance of 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