コード例 #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();
}