--- parser3/src/include/pa_request.h 2001/03/10 11:18:14 1.23 +++ parser3/src/include/pa_request.h 2001/03/10 13:07:09 1.26 @@ -1,5 +1,5 @@ /* - $Id: pa_request.h,v 1.23 2001/03/10 11:18:14 paf Exp $ + $Id: pa_request.h,v 1.26 2001/03/10 13:07:09 paf Exp $ */ #ifndef PA_REQUEST_H @@ -43,10 +43,11 @@ public: void core(); void use(char *file, String *alias); // core.C - Value& autocalc(Value& value, bool make_string=true); // execute.C + Value& autocalc(Value& value, const String *name=0, bool make_string=true); // execute.C - void write(String& astring) { - wcontext->write(astring, lang); // append string, assigning untaint language + void write(Value& avalue) { + // appending possible string, assigning untaint language + wcontext->write(avalue, lang); } public: @@ -89,11 +90,7 @@ private: // lang&raw private: // lang&raw manipulation - - + // TODO }; -// core func -void core(); - #endif