sl@0: /* sl@0: * Copyright (c) 2009 Symbian Foundation Ltd sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of the License "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Symbian Foundation Ltd - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * Tiger app document class sl@0: */ sl@0: sl@0: #ifndef TIGERDOCUMENT_H sl@0: #define TIGERDOCUMENT_H sl@0: sl@0: // INCLUDES sl@0: #include sl@0: sl@0: // FORWARD DECLARATIONS sl@0: class CEikAppUi; sl@0: sl@0: // CLASS DECLARATION sl@0: sl@0: /** sl@0: * Document class that is just used as the container for the application sl@0: * (as required by the Symbian UI application architecture). sl@0: */ sl@0: class CTigerDocument : public CAknDocument sl@0: { sl@0: public: // Constructors and destructor sl@0: sl@0: /** sl@0: * Factory method for creating a new CTigerDocument object. sl@0: */ sl@0: static CTigerDocument* NewL(CEikApplication& aApp); sl@0: sl@0: /** sl@0: * Destructor. Does nothing. sl@0: */ sl@0: virtual ~CTigerDocument(); sl@0: sl@0: private: // Functions from base classes sl@0: sl@0: /** sl@0: * C++ constructor. Just passes the given application reference to the baseclass. sl@0: */ sl@0: CTigerDocument(CEikApplication& aApp); sl@0: sl@0: /** sl@0: * Second phase constructor. Does nothing. sl@0: */ sl@0: void ConstructL(); sl@0: sl@0: private: // New functions sl@0: sl@0: /** sl@0: * From CEikDocument, creates and returns CTigerAppUi application UI object. sl@0: */ sl@0: CEikAppUi* CreateAppUiL(); sl@0: }; sl@0: sl@0: #endif sl@0: sl@0: // End of File sl@0: