Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Use 'getGroup' method of corresponding parent FIXMessage or nested repeating group.


Code Block
languagecpp
titleExample.cpp
linenumberstrue
#include <B2BITS_FIXMessage.h>
#include <B2BITS_FIXGroup.h>
#include <B2BITS_FIXFields.h>
//...

FIXGroup* pGroup = pMessage->getGroup(FIXFields::NoQuoteSets);


Please note, that memory of FIXGroup instance is managed by it's parent FIXMessage, you should not delete it by yourself.

Getting Repeating Group size (number of entries)

...