Class: Quickfix::QuoteType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ QuoteType

Returns a new instance of QuoteType.



7364
7365
7366
7367
7368
7369
7370
# File 'lib/quickfix_fields.rb', line 7364

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