Class: Quickfix::XmlDataLen

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ XmlDataLen

Returns a new instance of XmlDataLen.



16659
16660
16661
16662
16663
16664
16665
# File 'lib/quickfix_fields.rb', line 16659

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

Class Method Details

.fieldObject



16656
16657
16658
# File 'lib/quickfix_fields.rb', line 16656

def XmlDataLen.field
  return 212
end