Class: Quickfix::Signature

Inherits:
StringField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ Signature

Returns a new instance of Signature.



17244
17245
17246
17247
17248
17249
17250
# File 'lib/quickfix_fields.rb', line 17244

def initialize(data = nil)
  if( data == nil )
    super(89)
  else
    super(89, data)
  end
end

Class Method Details

.fieldObject



17241
17242
17243
# File 'lib/quickfix_fields.rb', line 17241

def Signature.field
  return 89
end