networkprotocols/mobileip/NetCfgExtnMip/src/NetCfgExtnMip.h
changeset 0 af10295192d8
equal deleted inserted replaced
-1:000000000000 0:af10295192d8
       
     1 /**
       
     2 * Copyright (c) 2004-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:
       
    15 * RStartServer Client side header
       
    16 * Declares the R class to start server process,
       
    17 * the class covers EPOC platform & emulator diferences
       
    18 * 
       
    19 *
       
    20 */
       
    21 
       
    22 
       
    23 
       
    24 /**
       
    25  @file
       
    26  @internalComponent
       
    27 */
       
    28 
       
    29 #ifndef GUARD_NETCFGEXTNMIP_H
       
    30 #define GUARD_NETCFGEXTNMIP_H
       
    31 
       
    32 #include <e32base.h>
       
    33 #include <comms-infras/networkconfigextensionbase.h>
       
    34 #include "es_enum.h"
       
    35 #include <comms-infras/commsdebugutility.h>
       
    36 
       
    37 __FLOG_STMT(_LIT8(KLogTagNetCfgExtnMip, "NetCfgExtnMip");)
       
    38 
       
    39 /**
       
    40  Daemon configuration, uses RConfigDaemon generic config daemon client API 
       
    41  to configure network layer
       
    42  @internalTechnology
       
    43 **/
       
    44 class CNetworkConfigExtensionMip : public CNetworkConfigExtensionBase
       
    45 	{
       
    46 public:
       
    47   	static CNetworkConfigExtensionMip* NewL(TAny* aMNifIfNotify);
       
    48    	virtual ~CNetworkConfigExtensionMip();
       
    49 
       
    50 protected:
       
    51    	CNetworkConfigExtensionMip(MNifIfNotify& aNifIfNotify);
       
    52   	void ConstructL();
       
    53 	};
       
    54 	
       
    55 
       
    56 inline CNetworkConfigExtensionMip::CNetworkConfigExtensionMip(MNifIfNotify& aNifIfNotify) :
       
    57    CNetworkConfigExtensionBase(aNifIfNotify)
       
    58 /**
       
    59  CNetworkConfigExtensionBase - constructor
       
    60  @internalComponent
       
    61  @param aNifIfNotify - client of the control
       
    62 **/
       
    63 	{
       
    64 	}
       
    65 #endif
       
    66