linklayercontrol/networkinterfacemgr/src/NI_CFG.CPP
changeset 0 af10295192d8
equal deleted inserted replaced
-1:000000000000 0:af10295192d8
       
     1 // Copyright (c) 1997-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 /**
       
    17  @file NI_CFG.CPP
       
    18 */
       
    19 
       
    20 #include "IF_DEF.H"
       
    21 #include <ss_glob.h>
       
    22 #include <ss_std.h>
       
    23 
       
    24 NONSHARABLE_CLASS(CLibUnloader) : public CAsyncOneShot
       
    25 /**
       
    26 @internalComponent
       
    27 */
       
    28 	{
       
    29 public:
       
    30 	static CLibUnloader* NewL(RLibrary &aLibrary);
       
    31 	inline void Unload();
       
    32 protected:
       
    33 	CLibUnloader();
       
    34 	~CLibUnloader();
       
    35 	virtual void RunL();
       
    36 private:
       
    37 	RLibrary iLib;
       
    38 	};
       
    39 
       
    40 
       
    41 void CNifMan::UpdateIniConfigL()
       
    42 	{
       
    43 //@@@TODO: INTEGRATE THIS WITH THE YANKEE CHANGES TO REMOVE NIFMAN:: CLIENT CLASS
       
    44 	}
       
    45 
       
    46