examples/ForumNokia/DBMS/src/DBMSApplication.cpp

00001 /*
00002  * Copyright © 2008 Nokia Corporation.
00003  */
00004 
00005 #include "DBMSDocument.h"
00006 #include "DBMSApplication.h"
00007 
00008 // Uid for the application, this should match the one in the mmp file
00009 const TUid KUidDBMSApp = {0xE01F5466};
00010  
00011 
00012 // ---------------------------------------------------------------------------
00013 // CDBMSAppUi::CreateDocumentL()
00014 //
00015 // Create the document for the DBMS application.
00016 // ---------------------------------------------------------------------------
00017 CApaDocument* CDBMSApplication::CreateDocumentL()
00018     {
00019     return (static_cast<CApaDocument*>(CDBMSDocument::NewL(*this)));
00020     }
00021 
00022 // ---------------------------------------------------------------------------
00023 // CDBMSAppUi::AppDllUid()
00024 //
00025 // Return the UID of this DBMS application
00026 // ---------------------------------------------------------------------------
00027 TUid CDBMSApplication::AppDllUid() const
00028     {
00029     return KUidDBMSApp;
00030     }
00031 

Generated by  doxygen 1.6.2