Class: Quickfix::AssetClass

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

Returns a new instance of AssetClass.



25382
25383
25384
25385
25386
25387
25388
# File 'lib/quickfix_fields.rb', line 25382

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

Class Method Details

.fieldObject



25379
25380
25381
# File 'lib/quickfix_fields.rb', line 25379

def AssetClass.field
  return 1938
end