Class: Quickfix::NoIOIQualifiers

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoIOIQualifiers

Returns a new instance of NoIOIQualifiers.



2996
2997
2998
2999
3000
3001
3002
# File 'lib/quickfix_fields.rb', line 2996

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