Class: Quickfix::UnderlyingStreamType

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

Instance Method Summary collapse

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