Class: Quickfix::NoCompIDs

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoCompIDs

Returns a new instance of NoCompIDs.



12629
12630
12631
12632
12633
12634
12635
# File 'lib/quickfix_fields.rb', line 12629

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