Class: Quickfix::Signature

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ Signature

Returns a new instance of Signature.



214
215
216
217
218
219
220
# File 'lib/quickfix_fields.rb', line 214

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