Class: Quickfix::ExchangeRule

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ExchangeRule

Returns a new instance of ExchangeRule.



11212
11213
11214
11215
11216
11217
11218
# File 'lib/quickfix_fields.rb', line 11212

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