* 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

@ -17,10 +17,10 @@ struct Hash
Hash();
/* Check whether two hash are equal. */
bool operator == (Hash & h2);
bool operator == (Hash h2);
/* Check whether two hash are not equal. */
bool operator != (Hash & h2);
bool operator != (Hash h2);
/* Convert a hash code into a hexadecimal representation. */
operator string() const;