Class: Quickfix::XmlData

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ XmlData

Returns a new instance of XmlData.



13240
13241
13242
13243
13244
13245
13246
# File 'lib/quickfix_fields.rb', line 13240

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

Class Method Details

.fieldObject



13237
13238
13239
# File 'lib/quickfix_fields.rb', line 13237

def XmlData.field
	return 213
end