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 * Tiger app document class
17 #ifndef TIGERDOCUMENT_H
18 #define TIGERDOCUMENT_H
23 // FORWARD DECLARATIONS
29 * Document class that is just used as the container for the application
30 * (as required by the Symbian UI application architecture).
32 class CTigerDocument : public CAknDocument
34 public: // Constructors and destructor
37 * Factory method for creating a new CTigerDocument object.
39 static CTigerDocument* NewL(CEikApplication& aApp);
42 * Destructor. Does nothing.
44 virtual ~CTigerDocument();
46 private: // Functions from base classes
49 * C++ constructor. Just passes the given application reference to the baseclass.
51 CTigerDocument(CEikApplication& aApp);
54 * Second phase constructor. Does nothing.
58 private: // New functions
61 * From CEikDocument, creates and returns CTigerAppUi application UI object.
63 CEikAppUi* CreateAppUiL();