Class: Quickfix::SecurityIDSource

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SecurityIDSource

Returns a new instance of SecurityIDSource.



5596
5597
5598
5599
5600
5601
5602
# File 'lib/quickfix_fields.rb', line 5596

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