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