Update contrib.
1 // Copyright (c) 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 "testlauncherappUi.h"
18 #include "testlauncherdocument.h"
21 CHelloWorldBasicDocument* CHelloWorldBasicDocument::NewL(CEikApplication& aApp)
23 CHelloWorldBasicDocument* self = NewLC(aApp);
24 CleanupStack::Pop(self);
28 CHelloWorldBasicDocument* CHelloWorldBasicDocument::NewLC(CEikApplication& aApp)
30 CHelloWorldBasicDocument* self = new (ELeave) CHelloWorldBasicDocument(aApp);
31 CleanupStack::PushL(self);
36 void CHelloWorldBasicDocument::ConstructL()
41 CHelloWorldBasicDocument::CHelloWorldBasicDocument(CEikApplication& aApp) : CAknDocument(aApp)
46 CHelloWorldBasicDocument::~CHelloWorldBasicDocument()
51 CEikAppUi* CHelloWorldBasicDocument::CreateAppUiL()
53 // Create the application user interface, and return a pointer to it;
54 // the framework takes ownership of this object
55 return static_cast<CEikAppUi*>(new (ELeave) CHelloWorldBasicAppUi);