Class: Quickfix::SecureData

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

Class Method Summary collapse

Instance Method Summary collapse

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

.fieldObject



1823
1824
1825
# File 'lib/quickfix_fields.rb', line 1823

def SecureData.field
  return 91
end