![]() |
Sorts fields in correct trailer order. More...
#include <MessageSorters.h>
Static Public Member Functions | |
static bool | compare (const int x, const int y) |
Sorts fields in correct trailer order.
Definition at line 69 of file MessageSorters.h.
static bool FIX::trailer_order::compare | ( | const int | x, | |
const int | y | |||
) | [inline, static] |
Definition at line 71 of file MessageSorters.h.
References FIX::FIELD::CheckSum.
Referenced by FIX::message_order::operator()().
00072 { 00073 if ( x == FIELD::CheckSum ) return false; 00074 else 00075 if ( y == FIELD::CheckSum ) return true; 00076 else return x < y; 00077 }