--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/upnp/upnpstack/serviceframework/inc/upnphttpnonmoderatedeventtransaction.h Tue Feb 02 01:12:20 2010 +0200
@@ -0,0 +1,73 @@
+/** @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_CUPNPHTTPNONMODERATEDEVENTTRANSACTION_H
+#define C_CUPNPHTTPNONMODERATEDEVENTTRANSACTION_H
+
+// INCLUDES
+#include "upnpnonmoderatedeventqueuemanager.h"
+
+// CLASS DECLARATION
+
+/**
+ * CUpnpHttpNonModeratedEventTransaction
+ *
+ */
+NONSHARABLE_CLASS( CUpnpHttpNonModeratedEventTransaction ): public CUpnpHttpTransaction
+ {
+public:
+ // Constructors and destructor
+
+ /**
+ * Destructor.
+ */
+ ~CUpnpHttpNonModeratedEventTransaction();
+
+ /**
+ * Two-phased constructor.
+ */
+ static CUpnpHttpNonModeratedEventTransaction* NewL( CUpnpHttpMessage* aRequest, MTransactionObserver& aObserver );
+
+ /**
+ * Two-phased constructor.
+ */
+ static CUpnpHttpNonModeratedEventTransaction* 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
+ */
+ CUpnpHttpNonModeratedEventTransaction( CUpnpHttpMessage* aRequest, MTransactionObserver& aObserver );
+
+
+private:
+
+ MTransactionObserver& iObserver;//not owned
+
+ };
+
+#endif // C_CUPNPHTTPNONMODERATEDEVENTTRANSACTION_H
+//end of file