omadm/omadmextensions/adapters/connmoadapter/src/Luid.cpp
changeset 18 7d11f9a6646f
parent 4 75a71fdb4c92
child 21 c707676bf59f
--- a/omadm/omadmextensions/adapters/connmoadapter/src/Luid.cpp	Tue Feb 02 00:03:17 2010 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,78 +0,0 @@
-/*
- * ==============================================================================
- * Copyright (c) 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:
- * 
- * ==============================================================================
- */
-
-#include "Luid.h"
-#include "OstTraceDefinitions.h"
-#ifdef OST_TRACE_COMPILER_IN_USE
-#include "LuidTraces.h"
-#endif
-
-
-// ======== LOCAL FUNCTIONS =========
-
-// ======== MEMBER FUNCTIONS ========
-
-//------------------------------------------------------------------------------
-// TLuid::TLuid()
-//------------------------------------------------------------------------------
-TLuid::TLuid() 
-    {
-
-    }
-
-//------------------------------------------------------------------------------
-// TLuid::TLuid()
-//------------------------------------------------------------------------------
-TLuid::TLuid( const TDesC8& aName, const TUint32 aCmId ) 
-    {
-    OstTraceExt2( TRACE_NORMAL, TLUID_TLUID, "ENTRY: TLuid::TLuid;aName=%s;aCmId=%u", aName, aCmId );
-    
-    iName = aName;
-    iCmId = aCmId;
-    }
-
-//------------------------------------------------------------------------------
-// TLuid::Equals()
-//------------------------------------------------------------------------------
-TBool TLuid::Equals( TUint32 aId ) const
-    {
-    OstTraceFunctionEntry1( TLUID_EQUALS_ENTRY, this );
-    if ( aId == iCmId)
-        {
-        OstTraceFunctionExitExt( TLUID_EQUALS_EXIT, this, ETrue );
-        return ETrue;
-        }
-    else
-        {
-        OstTraceFunctionExitExt( DUP1_TLUID_EQUALS_EXIT, this, EFalse );
-        return EFalse;
-        }
-    }
-
-//------------------------------------------------------------------------------
-// TLuid::GetCmId()
-//------------------------------------------------------------------------------
-TUint32 TLuid::GetCmId()
-    {
-    OstTrace1( TRACE_NORMAL, TLUID_GETCMID, "TLuid::GetCmId;iCmId=%u", iCmId );
-    
-    return iCmId;
-    }
-
-// ======== GLOBAL FUNCTIONS ========