Class: Quickfix::SecureDataLen

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SecureDataLen

Returns a new instance of SecureDataLen.



18934
18935
18936
18937
18938
18939
18940
# File 'lib/quickfix_fields.rb', line 18934

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

Class Method Details

.fieldObject



18931
18932
18933
# File 'lib/quickfix_fields.rb', line 18931

def SecureDataLen.field
	return 90
end