2 #include "../Common/Common.h"
4 #include "UserLogParam.h"
6 // Track memory leaks on Windows to the line that new'd the memory
9 #define DEBUG_NEW new( _NORMAL_BLOCK, THIS_FILE, __LINE__ )
12 static char THIS_FILE
[] = __FILE__
;
16 // Needed so we can sort() vectors of parameters
17 bool CUserLogParam::ComparePtr(CUserLogParam
* pA
, CUserLogParam
* pB
)
19 if ((pA
== NULL
) || (pB
== NULL
))
21 int iResult
= pA
->strName
.compare(pB
->strName
);
25 else if (iResult
== 0)
27 if (pA
->strTimeStamp
.compare(pB
->strTimeStamp
) < 0)