* Realisation of File(...) expressions.

This commit is contained in:
Eelco Dolstra 2003-06-27 13:55:12 +00:00
parent bb03c45ca0
commit 3da9687854
11 changed files with 137 additions and 368 deletions

View file

@ -14,7 +14,7 @@ Hash::Hash()
}
bool Hash::operator == (Hash & h2)
bool Hash::operator == (Hash h2)
{
for (unsigned int i = 0; i < hashSize; i++)
if (hash[i] != h2.hash[i]) return false;
@ -22,7 +22,7 @@ bool Hash::operator == (Hash & h2)
}
bool Hash::operator != (Hash & h2)
bool Hash::operator != (Hash h2)
{
return !(*this == h2);
}