Class: Quickfix::SecureData
- Inherits:
-
StringField
- Object
- StringField
- Quickfix::SecureData
- Defined in:
- lib/quickfix_fields.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ SecureData
constructor
A new instance of SecureData.
Constructor Details
#initialize(data = nil) ⇒ SecureData
Returns a new instance of SecureData.
1826 1827 1828 1829 1830 1831 1832 |
# File 'lib/quickfix_fields.rb', line 1826 def initialize(data = nil) if( data == nil ) super(91) else super(91, data) end end |
Class Method Details
.field ⇒ Object
1823 1824 1825 |
# File 'lib/quickfix_fields.rb', line 1823 def SecureData.field return 91 end |