00001 /* 00002 * Copyright (c) 2009 Nokia Corporation. 00003 */ 00004 00005 #ifndef __CLIENT_APPLICATION_H__ 00006 #define __CLIENT_APPLICATION_H__ 00007 00008 #include <aknapp.h> 00009 00010 // UID for the application; this should correspond to the uid defined in 00011 // the mmp file 00012 const TUid KUidClientApp = {0xA00002DC}; 00013 const TUid KUidHelpFile = {0x2000E190}; // From help rtf file 00014 00015 00016 class CClientApplication : public CAknApplication 00017 { 00018 /* 00019 * From CAknApplication 00020 */ 00021 public: 00022 /* 00023 * AppDllUid() 00024 * 00025 * Returns the UID for the Client application 00026 * 00027 * Params: 00028 * - 00029 * 00030 * Returns: 00031 * UID of the application. 00032 * 00033 */ 00034 TUid AppDllUid() const; 00035 00036 /* 00037 * From CAknApplication 00038 */ 00039 protected: 00040 /* 00041 * CreateDocumentL() 00042 * 00043 * Creates new document and returns pointer to it. Called by the application 00044 * DLL framework to create a new instance of the document associated with this 00045 * application. 00046 * 00047 * Params: 00048 * - 00049 * 00050 * Returns: 00051 * - 00052 * 00053 */ 00054 CApaDocument* CreateDocumentL(); 00055 }; 00056 00057 #endif // __CLIENT_APPLICATION_H__
Copyright ©2010 Nokia Corporation and/or its subsidiary(-ies).
All rights
reserved. Unless otherwise stated, these materials are provided under the terms of the Eclipse Public License
v1.0.