S60 3rd Edition SDK for Symbian OS Example Applications Guide |
#include <helloworldbasicapplication.h>
Public Member Functions | |
TUid | AppDllUid () const |
Protected Member Functions | |
CApaDocument * | CreateDocumentL () |
Definition at line 30 of file helloworldbasicapplication.h.
|
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 2006 |