Class: Quickfix::Subject
- Inherits:
-
StringField
- Object
- StringField
- Quickfix::Subject
- Defined in:
- lib/quickfix_fields.rb
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ Subject
constructor
A new instance of Subject.
Constructor Details
#initialize(data = nil) ⇒ Subject
Returns a new instance of Subject.
2320 2321 2322 2323 2324 2325 2326 |
# File 'lib/quickfix_fields.rb', line 2320 def initialize(data = nil) if( data == nil ) super(147) else super(147, data) end end |