cmmanager/cmmgr/cmmserver/inc/cmmbearerpriority.h
branchRCL_3
changeset 57 05bc53fe583b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cmmanager/cmmgr/cmmserver/inc/cmmbearerpriority.h	Tue Aug 31 15:35:44 2010 +0300
@@ -0,0 +1,85 @@
+/*
+* Copyright (c) 2006-2010 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:
+* Implementation of bearer priority structure.
+*
+*/
+
+
+#ifndef CMMBEARERPRIORITY_H_
+#define CMMBEARERPRIORITY_H_
+
+#include <e32base.h>
+
+
+NONSHARABLE_CLASS( CCmmBearerPriority ) : public CBase
+    {
+public:
+    /**
+     * Two phased constuction.
+     */
+    static CCmmBearerPriority* NewL(
+            const TDesC& aServiceType,
+            const TUint aPriority,
+            const TUint aUiPriority );
+
+    /**
+     * Two phased constuction.
+     */
+    static CCmmBearerPriority* NewLC(
+            const TDesC& aServiceType,
+            const TUint aPriority,
+            const TUint aUiPriority );
+
+    /**
+     * Destructor.
+     */
+    ~CCmmBearerPriority();
+
+private:
+    /**
+     * Constructor.
+     */
+    CCmmBearerPriority( const TUint aPriority, const TUint aUiPriority );
+
+    /**
+     * 2nd phase constructor.
+     */
+    void ConstructL( const TDesC& aServiceType );
+
+public:
+    /**
+     * Get the service type.
+     */
+    HBufC* ServiceType() const;
+
+    /**
+     * Get the priority.
+     */
+    TUint Priority() const;
+
+    /**
+     * Get the UI priority.
+     */
+    TUint UiPriority() const;
+
+private:
+    HBufC* iServiceType; // Owned.
+    TUint iPriority;
+    TUint iUiPriority;
+    };
+
+#endif // CMMBEARERPRIORITY_H_
+
+// End of file