コード例 #1
0
ファイル: BoundingBox.cpp プロジェクト: rentpath/qgar
bool
BoundingBox::notEq(const BoundingBox& aBox) const
{
  return (topLeft_ != aBox.topLeft()) || (bottomRight_ != aBox.bottomRight());
}
コード例 #2
0
ファイル: BoundingBox.cpp プロジェクト: rentpath/qgar
bool
BoundingBox::eq(const BoundingBox& aBox) const
{
  return (topLeft_ == aBox.topLeft()) && (bottomRight_ == aBox.bottomRight());
}