Class: Quickfix::LegStreamType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LegStreamType

Returns a new instance of LegStreamType.



30439
30440
30441
30442
30443
30444
30445
# File 'lib/quickfix_fields.rb', line 30439

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