Example Application Guide

 

CGeoProfilesDocument Class Reference

#include <geoprofilesdocument.h>

Inheritance diagram for CGeoProfilesDocument:

List of all members.

Detailed Description

GeoProfiles Application's document class.

Definition at line 31 of file geoprofilesdocument.h.

Public Member Functions

virtual ~CGeoProfilesDocument ()

Static Public Member Functions

static CGeoProfilesDocumentNewL (CEikApplication &aApp)

Private Member Functions

 CGeoProfilesDocument (CEikApplication &aApp)
void ConstructL ()
CEikAppUi * CreateAppUiL ()


Constructor & Destructor Documentation

CGeoProfilesDocument::~CGeoProfilesDocument  )  [virtual]
 

Virtual destructor

Definition at line 38 of file geoprofilesdocument.cpp.

00039     { 
00040     }

CGeoProfilesDocument::CGeoProfilesDocument CEikApplication &  aApp  )  [private]
 

C++ Default constructor

Definition at line 29 of file geoprofilesdocument.cpp.

Referenced by NewL().

00030         :CAknDocument( aApp )    
00031     {
00032     }


Member Function Documentation

CGeoProfilesDocument * CGeoProfilesDocument::NewL CEikApplication &  aApp  )  [static]
 

Static Two phase constructor

Definition at line 46 of file geoprofilesdocument.cpp.

References CGeoProfilesDocument().

Referenced by CGeoProfilesApp::CreateDocumentL().

00047     {
00048     CGeoProfilesDocument* self = new (ELeave) CGeoProfilesDocument( aApp );
00049     CleanupStack::PushL( self );
00050     self->ConstructL();
00051     CleanupStack::Pop();
00052     
00053     return self;
00054     }

void CGeoProfilesDocument::ConstructL  )  [private]
 

Second phase of the two phase constructor

Definition at line 60 of file geoprofilesdocument.cpp.

00061     {
00062     }

CEikAppUi * CGeoProfilesDocument::CreateAppUiL  )  [private]
 

Inherited from CAknDocument

Definition at line 68 of file geoprofilesdocument.cpp.

00069     {
00070     return new (ELeave) CGeoProfilesAppUi;
00071     }


The documentation for this class was generated from the following files:

© Nokia 2009

Back to top