--- parser3/src/include/pa_string.h 2001/03/19 17:42:12 1.43 +++ parser3/src/include/pa_string.h 2001/03/19 20:46:36 1.45 @@ -5,7 +5,7 @@ Author: Alexander Petrosyan (http://design.ru/paf) - $Id: pa_string.h,v 1.43 2001/03/19 17:42:12 paf Exp $ + $Id: pa_string.h,v 1.45 2001/03/19 20:46:36 paf Exp $ */ #ifndef PA_STRING_H @@ -84,6 +84,7 @@ public: just a flag, that value not stored */ AS_IS, ///< leave all characters intact + FILE, ///< filename HEADER, ///< text in response header URI, ///< text in uri TABLE, ///< ^table:set body @@ -101,7 +102,7 @@ public: /// convert to C string char *cstr() const; String& real_append(STRING_APPEND_PARAMS); - /// \return <0 ==0 or >0 depending on comparison result + /// @return <0 ==0 or >0 depending on comparison result int cmp (const String& src) const; bool operator < (const String& src) const { return cmp(src)<0; } bool operator > (const String& src) const { return cmp(src)>0; }