S60 3rd Edition SDK FP1 for Symbian OS Example Applications Guide |
#include <SimpleCubeDocument.h>
Inherits CAknDocument.
Inheritance diagram for CSimpleCubeDocument:
Definition at line 28 of file SimpleCubeDocument.h.
Public Member Functions | |
virtual | ~CSimpleCubeDocument () |
Static Public Member Functions | |
static CSimpleCubeDocument * | NewL (CEikApplication &aApp) |
Private Member Functions | |
CSimpleCubeDocument (CEikApplication &aApp) | |
void | ConstructL () |
CEikAppUi * | CreateAppUiL () |
|
Destructor. Does nothing. Definition at line 39 of file SimpleCubeDocument.cpp.
|
|
C++ constructor. Just passes the given application reference to the baseclass. Definition at line 27 of file SimpleCubeDocument.cpp. Referenced by NewL().
|
|
Factory method for creating a new CSimpleCubeDocument object. Definition at line 60 of file SimpleCubeDocument.cpp. References CSimpleCubeDocument(). Referenced by CSimpleCubeApp::CreateDocumentL(). 00062 { 00063 CSimpleCubeDocument* self = new (ELeave) CSimpleCubeDocument( aApp ); 00064 CleanupStack::PushL( self ); 00065 self->ConstructL(); 00066 CleanupStack::Pop(); 00067 00068 return self; 00069 }
|
|
Second phase constructor. Does nothing. Definition at line 50 of file SimpleCubeDocument.cpp.
|
|
From CEikDocument, creates and returns CSimpleCubeAppUi application UI object. Definition at line 77 of file SimpleCubeDocument.cpp. 00078 { 00079 return new (ELeave) CSimpleCubeAppUi; 00080 }
|
© Nokia 2006 |