examples/ForumNokia/HTTPClientExample/src/ClientApplication.cpp

00001 /*
00002  * Copyright (c) 2009 Nokia Corporation.
00003  */
00004 
00005 #include "ClientDocument.h"
00006 #include "ClientApplication.h"
00007 
00008 // ----------------------------------------------------------------------------
00009 // CClientApplication::CreateDocumentL()
00010 //
00011 // Creates an Client document, and returns a pointer to it
00012 // ----------------------------------------------------------------------------
00013 CApaDocument* CClientApplication::CreateDocumentL()
00014   {
00015   return (static_cast<CApaDocument*>(CClientDocument::NewL(*this)));
00016   }
00017 
00018 // ----------------------------------------------------------------------------
00019 // CClientApplication::AppDllUid()
00020 //
00021 // Returns the UID for the Client application
00022 // ----------------------------------------------------------------------------
00023 TUid CClientApplication::AppDllUid() const
00024   {
00025     return KUidClientApp;
00026   }
00027 
00028 // end of file

Generated by  doxygen 1.6.2