datacommsserver/networkcontroller/ts_netconoom/TestBases.cpp
changeset 0 dfb7c4ff071f
equal deleted inserted replaced
-1:000000000000 0:dfb7c4ff071f
       
     1 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 #include "TestBases.h"
       
    17 #include "NetConLog.h"
       
    18 
       
    19 //
       
    20 // OOM Test Base Class
       
    21 //
       
    22 
       
    23 COomTestBase::COomTestBase()
       
    24 	{}
       
    25 
       
    26 void COomTestBase::ConstructL()
       
    27 	{
       
    28 
       
    29 	iNetCon = CNetworkController::NewL();
       
    30 	}
       
    31 
       
    32 COomTestBase::~COomTestBase()
       
    33 	{
       
    34 
       
    35 	if (iNetCon)
       
    36 		delete iNetCon;
       
    37 	}
       
    38 
       
    39 void COomTestBase::SelectComplete(const TDesC&)
       
    40 	{
       
    41 
       
    42 	User::Invariant();
       
    43 	}
       
    44 
       
    45 void COomTestBase::SelectComplete(TInt)
       
    46 	{
       
    47 
       
    48 	User::Invariant();
       
    49 	}
       
    50 
       
    51 void COomTestBase::ReconnectComplete(TInt)
       
    52 	{
       
    53 
       
    54 	User::Invariant();
       
    55 	}
       
    56