telephonyprotocols/pdplayer/umts/test/te_spudNetworkSide/src/spudNetSideQos.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 25 May 2010 13:58:08 +0300
branchRCL_3
changeset 12 cca59d85ca31
parent 0 3553901f7fa8
permissions -rw-r--r--
Revision: 201021 Kit: 2010121

// Copyright (c) 2006-2009 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 QoS utilities for te_spudNetworkTest.
// 
//

/**
 @file
 @internalComponent
*/


#include "spudNetSideQos.h"


#ifndef SYMBIAN_NON_SEAMLESS_NETWORK_BEARER_MOBILITY
//------------------------------------------------------
//	QoSEventToText
//------------------------------------------------------
TPtrC QoSEventToText(TQoSEvent aEvent)
{
	switch(aEvent)
    {
		case EQoSEventFailure:
		    return _L("EQoSEventFailure");
		case EQoSEventConfirm:
		    return _L("EQoSEventConfirm");
		case EQoSEventAdapt:
		    return _L("EQoSEventAdapt");
		case EQoSEventChannel:
		    return _L("EQoSEventChannel");
		case EQoSEventJoin:
		    return _L("EQoSEventJoin");
		case EQoSEventLeave:
		    return _L("EQoSEventLeave");
		case EQoSEventAddPolicy:
		    return _L("EQoSEventAddPolicy");
		case EQoSEventGetPolicy:
    	    return _L("EQoSEventGetPolicy");
		case EQoSEventDeletePolicy:
		    return _L("EQoSEventDeletePolicy");
		case EQoSEventLoadPolicyFile:
		    return _L("EQoSEventLoadPolicyFile");
		case EQoSEventUnloadPolicyFile:
		    return _L("EQoSEventUnloadPolicyFile");
		default:
			return _L("Unknown QoS event");
	}
}
#endif