Class: Quickfix::XmlDataLen

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ XmlDataLen

Returns a new instance of XmlDataLen.



487
488
489
490
491
492
493
# File 'lib/quickfix_fields.rb', line 487

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