Class: Quickfix::SecureData

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ SecureData

Returns a new instance of SecureData.



240
241
242
243
244
245
246
# File 'lib/quickfix_fields.rb', line 240

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

Class Method Details

.fieldObject



237
238
239
# File 'lib/quickfix_fields.rb', line 237

def SecureData.field
  return 91
end