diff -r 000000000000 -r f5a58ecadc66 servicediscoveryandcontrol/pnp/test/upnp/upnpmessage/inc/CMessage.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/servicediscoveryandcontrol/pnp/test/upnp/upnpmessage/inc/CMessage.h Tue Feb 02 01:12:20 2010 +0200 @@ -0,0 +1,74 @@ +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// + +#ifndef __CMESSAGE_H__ +#define __CMESSAGE_H__ + +// System includes +#include +#include +#include +#include +#include + +// Local includes +#include "CHeaders.h" +#include "rhttpheaders.h" + +/** Abstract base class for implementation of HTTP requests and responses +*/ +class CMessage : public CBase + { +public: + /** Destructor. + (NB Although this method has an implementation - this class must be abstract) + */ + ~CMessage() = 0; + + /** Specify the body data supplier for this HTTP message. + @see RHTTPMessage::AddBody + */ + inline void AddBody(MHTTPDataSupplier* aBody); + + /** Determine whether this HTTP message has a body or not. + @see RHTTPMessage::HasBody + */ + inline TBool HasBody() const; + + /** Obtain this HTTP message's body data supplier. + @see RHTTPMessage::GetBody + */ + inline MHTTPDataSupplier* Body() const; + +protected: + + /** Does base class 2 phase construction + */ + inline void ConstructL(CHeaderCodec& aCodec); + +private: + + CHeaders* iHeaders; + MHTTPDataSupplier* iDataSupplier; + + friend class RUPnPMessage; + friend class RRequest; + friend class RResponse; + }; + +#include "CMessage.inl" + + +#endif // __CMESSAGE_H__