Class: Quickfix::CurrencyCodeSource

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CurrencyCodeSource

Returns a new instance of CurrencyCodeSource.



78513
78514
78515
78516
78517
78518
78519
# File 'lib/quickfix_fields.rb', line 78513

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