예제 #1
0
static bool fullEntryCompare(const MBoxEntry &a, const MBoxEntry &b)
{
    return a.messageOffset() == b.messageOffset() &&
           a.separatorSize() == b.separatorSize() &&
           a.messageSize() == b.messageSize();
}
예제 #2
0
파일: mbox.cpp 프로젝트: pvuorela/kcalcore
static bool lessThanByOffset( const MBoxEntry &left, const MBoxEntry &right )
{
  return left.messageOffset() < right.messageOffset();
}