Class: Quickfix::UnderlyingStreamType

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

Returns a new instance of UnderlyingStreamType.



34326
34327
34328
34329
34330
34331
34332
# File 'lib/quickfix_fields.rb', line 34326

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

Class Method Details

.fieldObject



34323
34324
34325
# File 'lib/quickfix_fields.rb', line 34323

def UnderlyingStreamType.field
  return 40541
end