--- parser3/src/classes/response.C 2002/09/18 08:52:49 1.22 +++ parser3/src/classes/response.C 2024/11/04 03:53:25 1.35 @@ -1,42 +1,40 @@ /** @file Parser: @b response parser class. - Copyright (c) 2001, 2002 ArtLebedev Group (http://www.artlebedev.com) - Author: Alexandr Petrosian (http://paf.design.ru) + Copyright (c) 2001-2024 Art. Lebedev Studio (http://www.artlebedev.com) + Authors: Konstantin Morshnev , Alexandr Petrosian */ -static const char* IDENT_RESPONSE_C="$Date: 2002/09/18 08:52:49 $"; - #include "classes.h" +#include "pa_vmethod_frame.h" + #include "pa_request.h" +#include "pa_vresponse.h" + +volatile const char * IDENT_RESPONSE_C="$Id: response.C,v 1.35 2024/11/04 03:53:25 moko Exp $"; // class -class MResponse : public Methoded { +class MResponse: public Methoded { public: - MResponse(Pool& pool); + MResponse(); public: // Methoded bool used_directly() { return false; } }; +// global variable + +DECLARE_CLASS_VAR(response, new MResponse); + // methods -static void _clear(Request& r, const String& method_name, MethodParams *) { - r.get_self()/*VResponse*/->get_hash(&method_name)/*sure not 0*/->clear(); +static void _clear(Request& r, MethodParams&) { + GET_SELF(r, VResponse).fields().clear(); } // constructor -MResponse::MResponse(Pool& apool) : Methoded(apool, "response") { +MResponse::MResponse(): Methoded("response") { // ^clear[] - add_native_method("clear", Method::CT_DYNAMIC, _clear, 0, 0); -} -// global variable - -Methoded *response_class; - -// creator - -Methoded *MResponse_create(Pool& pool) { - return response_class=new(pool) MResponse(pool); + add_native_method("clear", Method::CT_STATIC, _clear, 0, 0); }