Class: Quickfix::CommRate

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ CommRate

Returns a new instance of CommRate.



40670
40671
40672
40673
40674
40675
40676
# File 'lib/quickfix_fields.rb', line 40670

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

Class Method Details

.fieldObject



40667
40668
40669
# File 'lib/quickfix_fields.rb', line 40667

def CommRate.field
	return 1233
end