hwrmhaptics/hapticspluginmanager/inc/hwrmhapticsplugintransactionlistitem.h
changeset 0 4e1aa6a622a0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/hwrmhaptics/hapticspluginmanager/inc/hwrmhapticsplugintransactionlistitem.h	Tue Feb 02 00:53:00 2010 +0200
@@ -0,0 +1,97 @@
+/*
+* Copyright (c) 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:  Plugin transaction list item header file.
+*
+*/
+
+
+#ifndef C_HWRMHAPTICSPLUGINTRANSACTIONLISTITEM_H
+#define C_HWRMHAPTICSPLUGINTRANSACTIONLISTITEM_H
+
+#include <e32base.h>
+
+/**
+* This class contains ongoing plugin operation data base class.
+*
+* @since S60 5.1
+*/
+class CHWRMHapticsPluginTransactionListItem : public CBase
+    {
+public:
+    /**
+     * Convenience constructor
+     */
+    CHWRMHapticsPluginTransactionListItem( TUint8 aTransId, TInt aCommandId );
+
+    /**
+     * Virtual destructor.
+     */
+    virtual ~CHWRMHapticsPluginTransactionListItem();
+
+    /**
+     * Returns pointer to next item in list.
+     *
+     * @return Pointer to next item.
+     */
+    CHWRMHapticsPluginTransactionListItem* NextItem();
+
+    /**
+     * Sets next item of the list.
+     *
+     * @param aListItem Pointer to next item of the list.
+     */
+    void SetNextItem( CHWRMHapticsPluginTransactionListItem* aListItem );
+
+    /**
+     * Sets ongoing transaction.
+     *
+     * @param aListItem Id of ongoing transaction.
+     */
+    void SetTransactionId( TUint8 aTransactionId );
+
+    /**
+     * Returns id of the ongoing transaction.
+     *
+     * @return Id of ongoing transaction.
+     */
+    TUint8 TransactionId();
+
+    /**
+     * Returns id of command being handled.
+     *
+     * @return Id of command being handled.
+     */
+    TInt CommandId();
+
+private:
+ 
+    /**
+     * Id of the ongoing transaction.
+     */   
+    TUint8 iTransId;
+
+    /**
+     * Id of the command being handled.
+     */
+    TInt   iCommandId;
+
+    /**
+     * Next data in the queue. Not owned.
+     */
+    CHWRMHapticsPluginTransactionListItem* iNextData;
+    };
+    
+#endif  // C_HWRMHAPTICSPLUGINTRANSACTIONLISTITEM_H
+            
+// End of File