Class: Quickfix::PositionCurrencyCodeSource

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PositionCurrencyCodeSource

Returns a new instance of PositionCurrencyCodeSource.



79033
79034
79035
79036
79037
79038
79039
# File 'lib/quickfix_fields.rb', line 79033

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