Class: Quickfix::EncryptedPasswordLen

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EncryptedPasswordLen

Returns a new instance of EncryptedPasswordLen.



825
826
827
828
829
830
831
# File 'lib/quickfix_fields.rb', line 825

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