コード例 #1
0
ファイル: buffer.cpp プロジェクト: devernay/ramen-1
bool buffer_t::operator!=( const buffer_t& other) const
{
    return ( bounds() != other.bounds()) || ( pixels_ != other.pixels_);
}
コード例 #2
0
ファイル: buffer.cpp プロジェクト: devernay/ramen-1
bool buffer_t::operator==( const buffer_t& other) const
{
    return ( bounds() == other.bounds()) && ( pixels_ == other.pixels_);
}