S60 3rd Edition SDK FP2 for Symbian OS
CommonDialogsEx

CommonDialogsExDocument.h

00001 /*
00002 * ============================================================================
00003 *  Name        : commondialogsexdocument.cpp
00004 *  Part of     : CommonDialogsEx
00005 *  Description : Declares CommonDialogsEx document.
00006 *  Version     : 
00007 *
00008 *  Copyright (c) 2006 Nokia Corporation.
00009 *  This material, including documentation and any related 
00010 *  computer programs, is protected by copyright controlled by 
00011 *  Nokia Corporation.
00012 * ==============================================================================
00013 */
00014 
00015 #ifndef CCOMMONDIALOGSEXDOCUMENT_H
00016 #define CCOMMONDIALOGSEXDOCUMENT_H
00017 
00018 // INCLUDES
00019 #include <eikdoc.h>
00020 
00021 // CONSTANTS
00022 
00023 // FORWARD DECLARATIONS
00024 class  CEikAppUi;
00025 
00026 // CLASS DECLARATION
00027 
00028 /**
00029 *  CCommonDialogsExDocument application class.
00030 */
00031 class CCommonDialogsExDocument : public CEikDocument
00032     {
00033     public: // Constructors and destructor
00034         /**
00035         * Two-phased constructor.
00036         */
00037         static CCommonDialogsExDocument* NewL(CEikApplication& aApp);
00038 
00039         /**
00040         * Destructor.
00041         */
00042         virtual ~CCommonDialogsExDocument();
00043 
00044     private:
00045 
00046         /**
00047         * EPOC default constructor.
00048         */
00049         CCommonDialogsExDocument(CEikApplication& aApp): CEikDocument(aApp) { }
00050         void ConstructL();
00051 
00052     private:
00053 
00054         /**
00055         * From CEikDocument, CreateAppUiL.
00056         * @return Pointer to created AppUi class object.
00057         */
00058         CEikAppUi* CreateAppUiL();
00059     };
00060 
00061 #endif
00062 
00063 // End of File
00064 

© Nokia 2007

Back to top