telephonyprotocols/pdplayer/umts/test/mbufgobblerlayer/src/mbufgobblersubconnproviderstates.cpp
branchRCL_3
changeset 82 042fd2753b8f
equal deleted inserted replaced
74:9200f38b1324 82:042fd2753b8f
       
     1 // Copyright (c) 2010 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 // Connection Provider Declaration
       
    15 //  (control plane)
       
    16 //
       
    17 
       
    18 /**
       
    19  @file
       
    20  @internalComponent
       
    21 */
       
    22 
       
    23 #include "mbufgobblersubconnproviderstates.h"
       
    24 #include "mbufgobblerlog.h"
       
    25 
       
    26 CMbufGobblerSubconnMeshStates::CMbufGobblerSubconnMeshStates()
       
    27 	{
       
    28 	// No implementation required
       
    29 	}
       
    30 
       
    31 CMbufGobblerSubconnMeshStates::~CMbufGobblerSubconnMeshStates()
       
    32 	{
       
    33 	}
       
    34 
       
    35 CMbufGobblerSubconnMeshStates* CMbufGobblerSubconnMeshStates::NewLC()
       
    36 	{
       
    37 	CMbufGobblerSubconnMeshStates* self =
       
    38 			new (ELeave) CMbufGobblerSubconnMeshStates();
       
    39 	CleanupStack::PushL(self);
       
    40 	self->ConstructL();
       
    41 	return self;
       
    42 	}
       
    43 
       
    44 CMbufGobblerSubconnMeshStates* CMbufGobblerSubconnMeshStates::NewL()
       
    45 	{
       
    46 	CMbufGobblerSubconnMeshStates* self =
       
    47 			CMbufGobblerSubconnMeshStates::NewLC();
       
    48 	CleanupStack::Pop(); // self;
       
    49 	return self;
       
    50 	}
       
    51 
       
    52 void CMbufGobblerSubconnMeshStates::ConstructL()
       
    53 	{
       
    54 
       
    55 	}