Class: Quickfix::EncodedTextLen

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

Returns a new instance of EncodedTextLen.



526
527
528
529
530
531
532
# File 'lib/quickfix_fields.rb', line 526

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

Class Method Details

.fieldObject



523
524
525
# File 'lib/quickfix_fields.rb', line 523

def EncodedTextLen.field
	return 354
end