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.



1150
1151
1152
1153
1154
1155
1156
# File 'lib/quickfix_fields.rb', line 1150

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

Class Method Details

.fieldObject



1147
1148
1149
# File 'lib/quickfix_fields.rb', line 1147

def IOIid.field
  return 23
end