Class: Quickfix::XmlData

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

Instance Method Summary collapse

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