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.

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

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


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

Generated on Sun Mar 31 2024 07:07:24 for QuickFIX by doxygen 1.9.8 written by Dimitri van Heesch, © 1997-2001