Class: Quickfix::XmlData

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ XmlData

Returns a new instance of XmlData.



500
501
502
503
504
505
506
# File 'lib/quickfix_fields.rb', line 500

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

Class Method Details

.fieldObject



497
498
499
# File 'lib/quickfix_fields.rb', line 497

def XmlData.field
  return 213
end