Class: Quickfix::TradeContinuation

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TradeContinuation

Returns a new instance of TradeContinuation.



25369
25370
25371
25372
25373
25374
25375
# File 'lib/quickfix_fields.rb', line 25369

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