Class: Quickfix::CrossPercent

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CrossPercent

Returns a new instance of CrossPercent.



5154
5155
5156
5157
5158
5159
5160
# File 'lib/quickfix_fields.rb', line 5154

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