Class: Quickfix::ListMethod

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ListMethod

Returns a new instance of ListMethod.



15996
15997
15998
15999
16000
16001
16002
# File 'lib/quickfix_fields.rb', line 15996

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