Class: Quickfix::PegDifference

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PegDifference

Returns a new instance of PegDifference.



3152
3153
3154
3155
3156
3157
3158
# File 'lib/quickfix_fields.rb', line 3152

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