Class: Quickfix::PositionCurrency

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PositionCurrency



14150
14151
14152
14153
14154
14155
14156
# File 'lib/quickfix_fields.rb', line 14150

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