--- parser3/src/include/pa_request.h 2001/03/29 08:34:47 1.73 +++ parser3/src/include/pa_request.h 2001/04/03 06:23:04 1.75 @@ -5,7 +5,7 @@ Author: Alexander Petrosyan (http://design.ru/paf) - $Id: pa_request.h,v 1.73 2001/03/29 08:34:47 paf Exp $ + $Id: pa_request.h,v 1.75 2001/04/03 06:23:04 paf Exp $ */ #ifndef PA_REQUEST_H @@ -104,7 +104,7 @@ public: /// appending, sure of clean string inside void write_no_lang(const String& astring) { - wcontext->write(astring, String::UL_NO); + wcontext->write(astring, String::UL_CLEAN); } /// appending string, passing language built into string being written void write_pass_lang(const String& astring) { @@ -120,7 +120,7 @@ public: } /// appending sure value, that would be converted to clean string void write_no_lang(Value& avalue) { - wcontext->write(avalue, String::UL_NO); + wcontext->write(avalue, String::UL_CLEAN); } /// appending sure value, not VString void write_expr_result(Value& avalue) { @@ -209,7 +209,7 @@ private: // lang manipulation private: - void output_result(const String& body_string, bool header_only); + void output_result(const VFile& body_file, bool header_only); }; /// Auto-object used for temporary changing Request::flang.