Class: Quickfix::NetMoney

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NetMoney

Returns a new instance of NetMoney.



2060
2061
2062
2063
2064
2065
2066
# File 'lib/quickfix_fields.rb', line 2060

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