Class: Quickfix::RateSource

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ RateSource

Returns a new instance of RateSource.



19142
19143
19144
19145
19146
19147
19148
# File 'lib/quickfix_fields.rb', line 19142

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