--- parser3/src/include/pa_string.h 2001/01/26 18:34:02 1.2 +++ parser3/src/include/pa_string.h 2001/01/27 10:02:59 1.4 @@ -1,5 +1,5 @@ /* - $Id: pa_string.h,v 1.2 2001/01/26 18:34:02 paf Exp $ + $Id: pa_string.h,v 1.4 2001/01/27 10:02:59 paf Exp $ */ /* @@ -20,6 +20,8 @@ #include +#include "pa_types.h" + class Pool; class String { @@ -86,8 +88,9 @@ public: char *c_str(); String& operator += (char *src); bool operator == (String& src); + String& operator = (String& src); - unsigned int hash_code(); + uint hash_code(); }; #endif