Class: Quickfix::StrikeIncrement

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ StrikeIncrement

Returns a new instance of StrikeIncrement.



3386
3387
3388
3389
3390
3391
3392
# File 'lib/quickfix_fields.rb', line 3386

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

Class Method Details

.fieldObject



3383
3384
3385
# File 'lib/quickfix_fields.rb', line 3383

def StrikeIncrement.field
  return 1204
end