Static Public Member Functions | List of all members
FIX::trailer_order Struct Reference

Sorts fields in correct trailer order. More...

#include <MessageSorters.h>

Static Public Member Functions

static bool compare (const int x, const int y)
 

Detailed Description

Sorts fields in correct trailer order.

Definition at line 70 of file MessageSorters.h.

Member Function Documentation

◆ compare()

static bool FIX::trailer_order::compare ( const int  x,
const int  y 
)
inlinestatic

Definition at line 72 of file MessageSorters.h.

References FIX::FIELD::CheckSum.

Referenced by FIX::message_order::operator()().

73  {
74  if ( x == FIELD::CheckSum ) return false;
75  else
76  if ( y == FIELD::CheckSum ) return true;
77  else return x < y;
78  }
const int CheckSum

The documentation for this struct was generated from the following file:

Generated on Sun Apr 15 2018 21:44:06 for QuickFIX by doxygen 1.8.13 written by Dimitri van Heesch, © 1997-2001