Class: Quickfix::TradeInputDevice

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TradeInputDevice

Returns a new instance of TradeInputDevice.



7884
7885
7886
7887
7888
7889
7890
# File 'lib/quickfix_fields.rb', line 7884

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