Class: Quickfix::Password
- Inherits:
-
StringField
- Object
- StringField
- Quickfix::Password
- Defined in:
- lib/quickfix_fields.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ Password
constructor
A new instance of Password.
Constructor Details
#initialize(data = nil) ⇒ Password
Returns a new instance of Password.
10705 10706 10707 10708 10709 10710 10711 |
# File 'lib/quickfix_fields.rb', line 10705 def initialize(data = nil) if( data == nil ) super(554) else super(554, data) end end |
Class Method Details
.field ⇒ Object
10702 10703 10704 |
# File 'lib/quickfix_fields.rb', line 10702 def Password.field return 554 end |