Class: Quickfix::IOIID

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) ⇒ IOIID

Returns a new instance of IOIID.



8872
8873
8874
8875
8876
8877
8878
# File 'lib/quickfix_fields.rb', line 8872

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

Class Method Details

.fieldObject



8869
8870
8871
# File 'lib/quickfix_fields.rb', line 8869

def IOIID.field
	return 23
end