S60 5th Edition SDK Example Applications Guide |
#include <helloworldbasicapplication.h>
Inheritance diagram for CHelloWorldBasicApplication:
Definition at line 30 of file helloworldbasicapplication.h.
Public Member Functions | |
TUid | AppDllUid () const |
Protected Member Functions | |
CApaDocument * | CreateDocumentL () |
|
From CApaApplication, AppDllUid.
Definition at line 43 of file helloworldbasicapplication.cpp. 00044 { 00045 // Return the UID for the HelloWorldBasic application 00046 return KUidHelloWorldBasicApp; 00047 }
|
|
From CApaApplication, CreateDocumentL. Creates CHelloWorldBasicDocument document object. The returned pointer in not owned by the CHelloWorldBasicApplication object.
Definition at line 31 of file helloworldbasicapplication.cpp. References CHelloWorldBasicDocument::NewL(). 00032 { 00033 // Create an HelloWorldBasic document, and return a pointer to it 00034 return (static_cast<CApaDocument*> 00035 ( CHelloWorldBasicDocument::NewL( *this ) ) ); 00036 }
|
© Nokia 2009 |