Class: Quickfix::SignatureLength

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SignatureLength

Returns a new instance of SignatureLength.



19428
19429
19430
19431
19432
19433
19434
# File 'lib/quickfix_fields.rb', line 19428

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

Class Method Details

.fieldObject



19425
19426
19427
# File 'lib/quickfix_fields.rb', line 19425

def SignatureLength.field
	return 93
end