Class: Quickfix::NoMsgTypes

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

Returns a new instance of NoMsgTypes.



4777
4778
4779
4780
4781
4782
4783
# File 'lib/quickfix_fields.rb', line 4777

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

Class Method Details

.fieldObject



4774
4775
4776
# File 'lib/quickfix_fields.rb', line 4774

def NoMsgTypes.field
  return 384
end