Class: Quickfix::XmlData
- Inherits:
-
StringField
- Object
- StringField
- Quickfix::XmlData
- Defined in:
- lib/quickfix_fields.rb
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ XmlData
constructor
A new instance of XmlData.
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 |