Class: Quickfix::NoStreams

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoStreams

Returns a new instance of NoStreams.



27943
27944
27945
27946
27947
27948
27949
# File 'lib/quickfix_fields.rb', line 27943

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