コード例 #1
0
ファイル: import.cpp プロジェクト: Jorsorokin/julia-studio
uint qHash(const Import &import)
{
    return ::qHash(import.url()) ^ ::qHash(import.file()) ^ ::qHash(import.version()) ^ ::qHash(import.alias());
}
コード例 #2
0
ファイル: import.cpp プロジェクト: Jorsorokin/julia-studio
bool Import::operator==(const Import &other) const
{
    return url() == other.url() && file() == other.file() && version() == other.version() && alias() == other.alias();
}