Class: Quickfix::ExpType

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ ExpType

Returns a new instance of ExpType.



13240
13241
13242
13243
13244
13245
13246
# File 'lib/quickfix_fields.rb', line 13240

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

Class Method Details

.fieldObject



13237
13238
13239
# File 'lib/quickfix_fields.rb', line 13237

def ExpType.field
  return 982
end