Class: Quickfix::NoQuoteAttributes

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoQuoteAttributes

Returns a new instance of NoQuoteAttributes.



75718
75719
75720
75721
75722
75723
75724
# File 'lib/quickfix_fields.rb', line 75718

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