diff -r 000000000000 -r f5a58ecadc66 upnp/upnpstack/serviceframework/inc/upnphttpinitialeventtransaction.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/upnp/upnpstack/serviceframework/inc/upnphttpinitialeventtransaction.h Tue Feb 02 01:12:20 2010 +0200 @@ -0,0 +1,68 @@ +/** @file +* Copyright (c) 2008-2008 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: Implements algoritms for nonmodereted events +* +*/ + + +#ifndef C_CUPNPHTTPINITIALEVENTTRANSACTION_H +#define C_CUPNPHTTPINITIALEVENTTRANSACTION_H + +// INCLUDES + +#include "upnphttptransaction.h" + +// CLASS DECLARATION + +/** +* CUpnpHttpInitialEventTransaction +* +*/ +NONSHARABLE_CLASS( CUpnpHttpInitialEventTransaction ): public CUpnpHttpTransaction + { +public: + // Constructors and destructor + + /** + * Destructor. + */ + ~CUpnpHttpInitialEventTransaction(); + + /** + * Two-phased constructor. + */ + static CUpnpHttpInitialEventTransaction* NewL( CUpnpHttpMessage* aRequest ); + + /** + * Two-phased constructor. + */ + static CUpnpHttpInitialEventTransaction* NewLC( CUpnpHttpMessage* aRequest ); + + /* + * Pure virtual method that let child classes to process + * response in their own specific way. + */ + void ProcessResponseL(); + +private: + + /** + * Constructor for performing 1st stage construction + */ + CUpnpHttpInitialEventTransaction( CUpnpHttpMessage* aRequest ); + + }; + +#endif // C_CUPNPHTTPINITIALEVENTTRANSACTION_H +//end of file