Class: Quickfix::SignatureLength

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SignatureLength

Returns a new instance of SignatureLength.



253
254
255
256
257
258
259
# File 'lib/quickfix_fields.rb', line 253

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