Class: Quickfix::ListID

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ ListID

Returns a new instance of ListID.



1553
1554
1555
1556
1557
1558
1559
# File 'lib/quickfix_fields.rb', line 1553

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

Class Method Details

.fieldObject



1550
1551
1552
# File 'lib/quickfix_fields.rb', line 1550

def ListID.field
	return 66
end