connectionmonitoring/connmon/connectionmonitor/src/ConnMonBearer.cpp
changeset 0 5a93021fdf25
equal deleted inserted replaced
-1:000000000000 0:5a93021fdf25
       
     1 /*
       
     2 * Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Implementation for bearer abstraction class.
       
    15 *
       
    16 */
       
    17 
       
    18 #include "ConnMonBearer.h"
       
    19 #include "ConnMonIAP.h"
       
    20 #include "connmoncommsdatcache.h"
       
    21 #include "log.h"
       
    22 
       
    23 // ---------------------------------------------------------------------------
       
    24 // Construction
       
    25 // ---------------------------------------------------------------------------
       
    26 //
       
    27 TConnMonBearer::TConnMonBearer(
       
    28         CConnMonIAP* aConnMonIAP,
       
    29         CConnMonCommsDatCache* aCommsDatCache )
       
    30         :
       
    31         iConnMonIAP( aConnMonIAP ),
       
    32         iCommsDatCache( aCommsDatCache )
       
    33     {
       
    34     __ASSERT_DEBUG( NULL != aConnMonIAP, User::Panic( KPanicBadParameter, KErrBadHandle ) );
       
    35     }
       
    36 
       
    37 // End-of-file