Class: Quickfix::ListExecInst

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ListExecInst

Returns a new instance of ListExecInst.



1592
1593
1594
1595
1596
1597
1598
# File 'lib/quickfix_fields.rb', line 1592

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