Class: Quickfix::NoMsgTypes

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoMsgTypes

Returns a new instance of NoMsgTypes.



5531
5532
5533
5534
5535
5536
5537
# File 'lib/quickfix_fields.rb', line 5531

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

Class Method Details

.fieldObject



5528
5529
5530
# File 'lib/quickfix_fields.rb', line 5528

def NoMsgTypes.field
	return 384
end