Class: Quickfix::StrikeIncrement

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

Returns a new instance of StrikeIncrement.



16074
16075
16076
16077
16078
16079
16080
# File 'lib/quickfix_fields.rb', line 16074

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

Class Method Details

.fieldObject



16071
16072
16073
# File 'lib/quickfix_fields.rb', line 16071

def StrikeIncrement.field
  return 1204
end