Class: Quickfix::EncryptMethod
- Inherits:
-
IntField
- Object
- IntField
- Quickfix::EncryptMethod
- Defined in:
- lib/quickfix_fields.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ EncryptMethod
constructor
A new instance of EncryptMethod.
Constructor Details
#initialize(data = nil) ⇒ EncryptMethod
Returns a new instance of EncryptMethod.
1917 1918 1919 1920 1921 1922 1923 |
# File 'lib/quickfix_fields.rb', line 1917 def initialize(data = nil) if( data == nil ) super(98) else super(98, data) end end |
Class Method Details
.field ⇒ Object
1914 1915 1916 |
# File 'lib/quickfix_fields.rb', line 1914 def EncryptMethod.field return 98 end |