Update contrib.
2 * Copyright (c) 2009 Symbian Foundation Ltd
3 * This component and the accompanying materials are made available
4 * under the terms of the License "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 * Symbian Foundation Ltd - initial contribution.
14 * Implementation of CTigerDocument class
19 #include "TigerDocument.h"
20 #include "TigerAppUi.h"
22 // ================= MEMBER FUNCTIONS =======================
24 // -----------------------------------------------------------------------------
25 // CTigerDocument::CTigerDocument
27 // Just calls the base class constructor.
28 // -----------------------------------------------------------------------------
31 CTigerDocument::CTigerDocument(CEikApplication& aApp)
36 // -----------------------------------------------------------------------------
37 // CTigerDocument::~CTigerDocument
40 // -----------------------------------------------------------------------------
43 CTigerDocument::~CTigerDocument()
47 // -----------------------------------------------------------------------------
48 // CTigerDocument::ConstructL
50 // Empty 2nd phase constructor.
51 // -----------------------------------------------------------------------------
54 void CTigerDocument::ConstructL()
58 // -----------------------------------------------------------------------------
59 // CTigerDocument::NewL
61 // -----------------------------------------------------------------------------
64 CTigerDocument* CTigerDocument::NewL(
65 CEikApplication& aApp) // CTigerApp reference
67 CTigerDocument* self = new (ELeave) CTigerDocument( aApp );
68 CleanupStack::PushL( self );
75 // ----------------------------------------------------
76 // CTigerDocument::CreateAppUiL()
77 // Constructs and returns a CTigerAppUi object.
78 // ----------------------------------------------------
81 CEikAppUi* CTigerDocument::CreateAppUiL()
83 return new (ELeave) CTigerAppUi;