Update contrib.
1 // Copyright (c) 2005-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
17 #include "LoadManager.h"
20 Standard phase-one construction method for creation of a single instance of
22 If the call succeeds, a pointer to the created singleton will be stored in TLS.
23 @leave KErrNoMemory Out of memory
24 @return A pointer to the created CGlobalData object.
27 CGlobalData* CGlobalData::NewL()
29 CGlobalData* self = CGlobalData::Instance();
32 self = new (ELeave) CGlobalData;
33 CleanupStack::PushL(self);
35 User::LeaveIfError(Dll::SetTls(self));
36 CleanupStack::Pop(self);
42 The function returns a pointer to the single CGlobalData instance or NULL if it
44 @return A pointer to the single CGlobalData instance. It might be NULL.
47 CGlobalData* CGlobalData::Instance()
49 return static_cast <CGlobalData*> (Dll::Tls());
52 CGlobalData::CGlobalData()
57 Removes from memory the controlled CLoadManager instance.
58 Closes the session connection with the ECOM server.
61 CGlobalData::~CGlobalData()
64 iEComSession.ReallyClose();
65 (void)Dll::SetTls(NULL);
69 Standard phase-two construction method for creation of CGlobalData objects.
70 It will create single REComSession instance and single CLoadManager instance.
71 @leave KErrNoMemory Out of memory
73 void CGlobalData::ConstructL()
75 iEComSession.ConstructL();
76 iLoadManager = CLoadManager::NewL();