Class: Quickfix::NoQuoteQualifiers

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoQuoteQualifiers

Returns a new instance of NoQuoteQualifiers.



10068
10069
10070
10071
10072
10073
10074
# File 'lib/quickfix_fields.rb', line 10068

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