S60 3rd Edition SDK FP2 for Symbian OS
CommonDialogsEx

CommonDialogsExApp.h

00001 /*
00002 * ============================================================================
00003 *  Name        : commondialogsexapp.cpp
00004 *  Part of     : CommonDialogsEx
00005 *  Description : Declares main application class.
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 CCOMMONDIALOGSEXAPP_H
00016 #define CCOMMONDIALOGSEXAPP_H
00017 
00018 // INCLUDES
00019 #include <aknapp.h>
00020 
00021 // CONSTANTS
00022 // UID of the application
00023 const TUid KUidDLLTest = { 0xE000027B };
00024 
00025 // CLASS DECLARATION
00026 
00027 /**
00028 * CCommonDialogsExApp application class.
00029 * Provides factory to create concrete document object.
00030 * 
00031 */
00032 class CCommonDialogsExApp : public CAknApplication
00033     {
00034     
00035     private:
00036 
00037         /**
00038         * From CApaApplication, creates CDLLTestDocument document object.
00039         * @return A pointer to the created document object.
00040         */
00041         CApaDocument* CreateDocumentL();
00042         
00043         /**
00044         * From CApaApplication, returns application's UID (KUidDLLTest).
00045         * @return The value of KUidDLLTest.
00046         */
00047         TUid AppDllUid() const;
00048     };
00049 
00050 #endif
00051 
00052 // End of File
00053 

© Nokia 2007

Back to top