Class: Quickfix::BidForwardPoints

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) ⇒ BidForwardPoints

Returns a new instance of BidForwardPoints.



2866
2867
2868
2869
2870
2871
2872
# File 'lib/quickfix_fields.rb', line 2866

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

Class Method Details

.fieldObject



2863
2864
2865
# File 'lib/quickfix_fields.rb', line 2863

def BidForwardPoints.field
  return 189
end