Method: Quickfix::Country#initialize

Defined in:
lib/quickfix_fields.rb

#initialize(data = nil) ⇒ Country



19675
19676
19677
19678
19679
19680
19681
# File 'lib/quickfix_fields.rb', line 19675

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