Method: Quickfix::DataDictionary#getGroup

Defined in:
lib/quickfix_ruby.rb

#getGroup(msgType, group) ⇒ Object



34
35
36
37
38
39
40
# File 'lib/quickfix_ruby.rb', line 34

def getGroup( msgType, group )
  delim = 0
  dictionary = Quickfix::DataDictionary.new
  delim = _getGroup( msgType, group, delim, dictionary )
  return nil if delim == nil
  return [delim, dictionary]
end